ibec_md5

Syntax

 function ibec_md5 (Value : string) : string;

Description

Functions return md5 sum for the specified value.

This function now supports Unicode (UTF8) file names. You can still use ANSI names, necessary checks and conversion are performed automatically.

See also:
ibec_md5File

Example:

  execute IBEBlock
  returns (cout varchar(100))
  as
  begin
    cout = ibec_md5('Test value');
    suspend;
  end

back to top of page
<< ibec_xor | IBEBlock | ibec_md5File >>