using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ReadEpubHtml
{
public class CrcCalculator
{
/// <summary>
/// Get CRC-8
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
public static string GetValue(string input)
{
return ComputeChecksum(Encoding.ASCII.GetBytes(input)).ToString("X2");
}
//Tạo Table dựa trên poly (https://crccalc.com/)
private static byte poly = 0x07; //0xd5;
static byte[] table = new byte[256];
private static byte[] Crc8Table()
{
for (int i = 0; i < 256; ++i)
{
int temp = i;
for (int j = 0; j < 8; ++j)
{
if ((temp & 0x80) != 0)
{
temp = (temp << 1) ^ poly;
}
else
{
temp <<= 1;
}
}
table[i] = (byte)temp;
}
return table;
}
// vị trí trong CRCtable
private static byte ComputeChecksum(params byte[] bytes)
{
Crc8Table();
byte crc = 0;
if (bytes != null && bytes.Length > 0)
{
foreach (byte b in bytes)
{
crc = table[crc ^ b];
}
}
return crc;
}
}
}
Không có nhận xét nào:
Đăng nhận xét