Hash()
Determines the hash of the given string (or binary object) using the current encoding and algorithm
Usage
STRING = Hash(
data,
algorithm,
encoding
)
Argument | Summary |
---|---|
data | string/binary |
algorithm | algorithm ('MD5', 'CFMX_COMPAT' +other Java supported) [optional] |
encoding | encoding [optional] |
Calling
Supports named-parameter calling allowing you to use the function like:
Hash( data=?, algorithm=?, encoding=? );
Supports passing parameters as a structure using ArgumentCollection:
Hash( ArgumentCollection={ data : ?, algorithm : ?, encoding : ? } );