Checksum - Function SummarySummary:Returns a CRC or other type of checksum. Usage:checksum data Arguments:data - Data to checksum (must be: any-string) Refinements:/tcp - Returns an Internet TCP 16-bit checksum. /secure - Returns a cryptographically secure checksum. /hash - Returns a hash value size - Size of the hash table (must be: integer) /method - Method to use word - Method: SHA1 MD5 (must be: word) /key - Returns keyed HMAC value key-value - Key to use (must be: any-string) Description:Generally, a checksum is a number which accompanies data to verify that the data has not changed (did not have errors).
The /Secure refinement creates a binary string result that is cryptographically secure:
The /TCP refinement is used to compute the standard TCP networking checksum. This is a weak but fast checksum method.
Related:any-string? - Returns TRUE for any-string values. User Comments:-From: paul-tretter 7-Dec-2001/20:51:55-8:00: Not sure of all the /methods but I know there is 'md5 method type for MD5 algorithm
| ||||||
|