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