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