Hash.GetMD5

Top  Previous  Next

Returns the MD5 hash value of the supplied value.

 

Syntax

function Hash.GetMD5(Value: string): string

 

Alternative Names

ibec_md5

 

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

Hash.GetMD5File

 

Example

execute UDSBlock returns (str_value varchar(100))

as

begin
  /* creates MD5 hash value */

  str_value = Hash.GetMD5('test value');

  suspend; /* returns hash */

end