|
|
1 NAME 2 hash_crc16 - 16 bit cyclic redundancy code 3 4 SYNOPSIS 5 int hash_crc16(string str, string extra...) 6 7 8 DESCRIPTION 9 Compute the 16 bit Cyclic Redundancy Code of the concatenation of all 10 string arguments, with polynomial: 11 12 X^16 + X^12 + X^5 + 1 13 14 CRC-16 is considered suitable for strings of up to a total of 4096 15 characters. 16 17 SEE ALSO 18 kfun/hash_md5