snowflake.snowpark.functions.md5_binary¶
- snowflake.snowpark.functions.md5_binary(msg: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns the MD5 hash of the input message as a binary value.
- Parameters:
msg (ColumnOrName) – The input message to compute the MD5 hash for.
- Returns:
The MD5 hash as a binary value (bytearray).
- Return type:
- Examples::