摘要: public class Crc32 { public static uint ComputeChecksum(byte[] bytes) { uint[] table = new uint[256]; // Initialize CRC table. for (uint i = 0; i < 25 阅读全文
posted @ 2024-03-07 18:25 极客船长 阅读(3) 评论(0) 推荐(0) 编辑