Hashbinary()

Determines the hash of the given binary object, or the file represented by the full path

Usage

STRING = Hashbinary( data, algorithm )
Argument Summary
data data filename/binary object
algorithm algorithm ('MD5', 'SHA-1', 'SHA-256') [optional]

Calling

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

Hashbinary(
   data=?, 
   algorithm=?
);

Supports passing parameters as a structure using ArgumentCollection:

Hashbinary( ArgumentCollection={
   data : ?, 
   algorithm : ?
} );