pub fn checksum(bytes: &[u8]) -> [u8; 2]
Compute the checksum of “bytes”.
checksum(bytes) is shorthand for:
checksum(bytes)
let mut c = Checksum::new(); c.add_bytes(bytes); c.checksum()