const CRC16_TABLE: [u16; 256] = [
0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7, 0x8108, 0x9129, 0xa14a, 0xb16b,
0xc18c, 0xd1ad, 0xe1ce, 0xf1ef, 0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,
0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de, 0x2462, 0x3443, 0x0420, 0x1401,
0x64e6, 0x74c7, 0x44a4, 0x5485, 0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d,
0x3653, 0x2672, 0x1611, 0x0630, 0x76d7, 0x66f6, 0x5695, 0x46b4, 0xb75b, 0xa77a, 0x9719, 0x8738,
0xf7df, 0xe7fe, 0xd79d, 0xc7bc, 0x48c4, 0x58e5, 0x6886, 0x78a7, 0x0840, 0x1861, 0x2802, 0x3823,
0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b, 0x5af5, 0x4ad4, 0x7ab7, 0x6a96,
0x1a71, 0x0a50, 0x3a33, 0x2a12, 0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a,
0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0x0c60, 0x1c41, 0xedae, 0xfd8f, 0xcdec, 0xddcd,
0xad2a, 0xbd0b, 0x8d68, 0x9d49, 0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0x0e70,
0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78, 0x9188, 0x81a9, 0xb1ca, 0xa1eb,
0xd10c, 0xc12d, 0xf14e, 0xe16f, 0x1080, 0x00a1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067,
0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e, 0x02b1, 0x1290, 0x22f3, 0x32d2,
0x4235, 0x5214, 0x6277, 0x7256, 0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d,
0x34e2, 0x24c3, 0x14a0, 0x04e1, 0x7406, 0x6427, 0x5444, 0x4465, 0xa7bb, 0xb79a, 0x87f9, 0x97d8,
0xe73f, 0xf71e, 0xc77d, 0xd75c, 0x26b3, 0x3692, 0x06f1, 0x16d0, 0x6637, 0x7616, 0x4675, 0x5654,
0xd9ec, 0xc9cd, 0xf9ae, 0xe98f, 0x9968, 0x8949, 0xb92a, 0xa90b, 0x58e4, 0x48c5, 0x78a6, 0x6887,
0x1860, 0x0841, 0x3822, 0x2803, 0xcbdd, 0xdbfc, 0xeb9f, 0xfbbe, 0x8b59, 0x9b78, 0xab1b, 0xbb3a,
0x4ad5, 0x5af4, 0x6a97, 0x7ab6, 0x0a51, 0x1a70, 0x2a13, 0x3a32, 0xfd8e, 0xedaf, 0xddcc, 0xcded,
0xbd0a, 0xad2b, 0x9d48, 0x8d69, 0x7c86, 0x6ca7, 0x5cc4, 0x4ce5, 0x3c02, 0x2c23, 0x1c40, 0x0c61,
0xef9f, 0xffbe, 0xcfdd, 0xdffc, 0xaf1b, 0xbf3a, 0x8f59, 0x9f78, 0x6e97, 0x7eb6, 0x4ed5, 0x5ef4,
0x2e13, 0x3e32, 0x0e51, 0x1e70,
];
pub fn crc16_xmodem(data: &[u8]) -> u16 {
let mut crc: u16 = 0;
for &byte in data {
let index = ((crc >> 8) ^ u16::from(byte)) as usize;
crc = (crc << 8) ^ CRC16_TABLE[index];
}
crc
}
pub fn crc16_xmodem_update(crc: u16, data: &[u8]) -> u16 {
let mut crc = crc;
for &byte in data {
let index = ((crc >> 8) ^ u16::from(byte)) as usize;
crc = (crc << 8) ^ CRC16_TABLE[index];
}
crc
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_crc16_xmodem_empty() {
assert_eq!(crc16_xmodem(&[]), 0x0000);
}
#[test]
fn test_crc16_xmodem_hello() {
let data = b"Hello, World!";
let crc = crc16_xmodem(data);
assert_eq!(crc16_xmodem(data), crc);
}
#[test]
fn test_crc16_xmodem_123456789() {
let data = b"123456789";
let crc = crc16_xmodem(data);
assert_eq!(crc16_xmodem(data), crc);
assert_ne!(crc, 0);
}
#[test]
fn test_crc16_xmodem_update() {
let data = b"Hello, World!";
let crc1 = crc16_xmodem(data);
let crc2 = crc16_xmodem(&data[..6]);
let crc2 = crc16_xmodem_update(crc2, &data[6..]);
assert_eq!(crc1, crc2);
}
}