Hash.GetMD5 |
Top Previous Next |
Returns the MD5 hash value of the supplied value.
Syntax function Hash.GetMD5(Value: string): string
Alternative Names
Description Creates an MD5 hash value of the supplied value and returns it.
Value holds a string value.
The Return Value is the MD5 hash digest string.
See also
Example execute UDSBlock returns (str_value varchar(100)) as begin str_value = Hash.GetMD5('test value'); suspend; /* returns hash */ end |