snowflake.snowpark.functions.sha1_binary¶
- snowflake.snowpark.functions.sha1_binary(msg: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.48.0/src/snowflake/snowpark/_functions/scalar_functions.py#L4161-L4179)¶
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::