md5
Description | Calculates the MD5 digest and returns the value as a 32 character hex string. |
---|---|
Syntax | Digest.md5(value) |
Example | Expression: Digest.md5("alpha") Result: 2c1743a391305fbf367df8e4f069f9f9 |
sha1
Description | Calculates the SHA-1 digest and returns the value as a hex string. |
---|---|
Syntax | Digest.sha1(value) |
Example | Expression: Digest.sha1("alpha") Result:
|
sha256
Description | Calculates the SHA-256 digest and returns the value as a hex string. |
---|---|
Syntax | Digest.sha256(value) |
Example | Expression: Digest.sha256("alpha") Result:
|
Related Information