SHA1 Encryption
Overview
The zoho.encryption.sha1 task returns the hash value corresponding to the given text, generated using the SHA1 algorithm.
Syntax
<response> = zoho.encryption.sha1(<data>);
where:
Params | Data type | Description |
<response> | TEXT | The hash value generated using the SHA1 algorithm. |
<data> | TEXT | The source text whose corresponding hash value needs to be computed. |
Example
The following script returns the hash generated using the SHA1 algorithm for the text - hello:
response = zoho.encryption.sha1("hello");
where:
response
"hello"