AddData(
toDigest BYTE )
|
Adds data from a BYTE variable to the digest
buffer.
|
AddBase64Data (
toDigest STRING )
|
Adds data in base64 format to the digest buffer.
|
AddHexBinaryData(
toDigest STRING )
|
Adds data in hexadecimal format to the digest buffer.
|
AddStringData(
toDigest STRING )
|
Adds a data string to the digest buffer.
|
AddStringDataWithCharset(
toDigest STRING,
charset STRING )
|
Adds a data string to the digest buffer, after converting to the
specified character set.
|
CreateDigestString(
toDigest STRING,
randomBase64 STRING )
RETURNS STRING
|
Creates a SHA1 digest from the given string.
|
DoBase64Digest()
RETURNS STRING
|
Creates a digest of the buffered data and returns the result in base64
format.
|
DoHexBinaryDigest()
RETURNS STRING
|
Creates a digest of the buffered data and returns the result in
hexadecimal format.
|