1 2 3 4 5 6 7
use libmpegts::utils::crc32b; #[test] fn test_crc32b() { let s = "123456789"; assert_eq!(crc32b(s), 0x0376e6e7); }