Core Function BinarySHA1
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> BinarySHA1( <binary-array> ) </pre> === Description === Returns the SHA1 hash of a binary variable. === Parameters === ==== binary-array ==== The binary variable to us...")
Newer edit →
(Created page with "<pre> BinarySHA1( <binary-array> ) </pre> === Description === Returns the SHA1 hash of a binary variable. === Parameters === ==== binary-array ==== The binary variable to us...")
Newer edit →
Revision as of 02:22, 26 April 2012
BinarySHA1( <binary-array> )
Contents |
Description
Returns the SHA1 hash of a binary variable.
Parameters
binary-array
The binary variable to use.
Return Value
Success: Returns the hash.
Failure: Returns empty string.
Remarks
None.
Example
my $Binary = Pack("z0", "Hello world!!!"); my $SHA1 = BinarySHA1($Binary); MsgBox( "SHA Hash is: $SHA1" );