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
The TEXT that represents the hash value returned by this task. Here, the hash returned is 5d41402abc4b2a76b9719d911017c592
"hello"
The TEXT that represents the source text whose corresponding hash needs to be computed.