meta data for this page
  •  

ibec_md5

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

Syntax

 function ibec_md5 (Value : string) : string;

Example

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