SYNAPSE - Synchronous TCP/IP Library for Delphi
Other related information can be found at http://www.ararat.cz/synapse/
Unit: SynaCode
- Misc. functions:
- Function DecodeQuotedPrintable(value:string):string
Decode string from quoted printable form.
- Function EncodeQuotedPrintable(value:string):string
Encode string to quoted printable form.
- Function DecodeBase64(value:string):string
Decode string from base64 form. (used in MIME)
- Function EncodeBase64(value:string):string
Encode string to base64 form. (used in MIME)
- Function UpdateCrc32(value:byte;crc32:integer):integer
Return new CRC32 value after add new byte of data.
- Function Crc32(value:string):integer
return CRC32 from value string.
- Function UpdateCrc16(value:byte;crc16:word):word
Return new CRC16 value after add new byte of data.
- Function Crc16(value:string):word
return CRC16 from value string.
- Function MD5(value:string):string
return binary string with RSA-MD5 hash of value string.