Hash()

Determines the hash of the given string (or binary object) using the current encoding and algorithm

Usage

STRING = Hash( data, algorithm, encoding, iterations, salt, sha, keylength )
Argument Summary
data string/binary
algorithm algorithm ('MD5', 'CFMX_COMPAT' +other Java supported) [optional]
encoding encoding [optional]
iterations iterations [optional]
salt salt [optional]
sha sha [optional]
keylength keylength [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Hash(
   data=?, 
   algorithm=?, 
   encoding=?, 
   iterations=?, 
   salt=?, 
   sha=?, 
   keylength=?
);

Supports passing parameters as a structure using ArgumentCollection:

Hash( ArgumentCollection={
   data : ?, 
   algorithm : ?, 
   encoding : ?, 
   iterations : ?, 
   salt : ?, 
   sha : ?, 
   keylength : ?
} );