xxxxxxxxxx
SHA1(cString) ---> String contains the SHA1 hash of the string cString
xxxxxxxxxx
see "sha1('hello') : " + sha1("hello") + nl +
"sha1('apple') : " + sha1("apple") + nl
xxxxxxxxxx
SHA256(cString) ---> String contains the SHA256 hash of the string cString
xxxxxxxxxx
see "sha256('hello') : " + sha256("hello") + nl +
"sha256('apple') : " + sha256("apple") + nl
xxxxxxxxxx
SHA512(cString) ---> String contains the SHA512 hash of the string cString
xxxxxxxxxx
see "sha512('hello') : " + sha512("hello") + nl +
"sha512('apple') : " + sha512("apple") + nl +
"sha512('hello world') : " + sha512("hello world") + nl
xxxxxxxxxx
SHA384(cString) ---> String contains the SHA384 hash of the string cString
xxxxxxxxxx
see "sha384('hello') : " + sha384("hello") + nl +
"sha384('apple') : " + sha384("apple") + nl +
"sha384('hello world') : " + sha384("hello world") + nl
xxxxxxxxxx
SHA224(cString) ---> String contains the SHA224 hash of the string cString
xxxxxxxxxx
see "sha224('hello') : " + sha224("hello") + nl +
"sha224('apple') : " + sha224("apple") + nl +
"sha224('hello world') : " + sha224("hello world") + nl