|  |  D.12.3.1 decimal Procedure from librarycrypto.lib(see  crypto_lib).
 
Example:Usage:
decimal(s); s = string
Return:
the (decimal) number corresponding to the hexadecimal number s
 |  | LIB "crypto.lib";
string s  ="8edfe37dae96cfd2466d77d3884d4196";
decimal(s);
==> 189912871665444375716340628395668619670
 | 
 
 |