feat(hash):增加系列校验和算法实现。

This commit is contained in:
徐涛
2023-07-12 14:59:25 +08:00
parent 0cbeaf050e
commit 29cebf455c
11 changed files with 543 additions and 5 deletions

59
hash/crc64/crc64.go Normal file
View File

@@ -0,0 +1,59 @@
// 提供CRC64校验和计算功能。
package crc64
import (
"encoding/hex"
"hash/crc64"
"io"
"os"
)
// 选择一个CRC64校验表。
func tableSelect(table string) *crc64.Table {
switch table {
case "ECMA":
return crc64.MakeTable(crc64.ECMA)
case "ISO":
return crc64.MakeTable(crc64.ISO)
default:
return crc64.MakeTable(crc64.ISO)
}
}
// 计算给定字节数组的CRC64校验和返回字节数组。
func CRC64(data []byte, table ...string) []byte {
crcTable := append(table, "ISO")
hasher := crc64.New(tableSelect(crcTable[0]))
hasher.Write(data)
return hasher.Sum(nil)
}
// 计算给定字节数组的CRC64校验和返回十六进制字符串。
func CRC64Hex(data []byte, table ...string) string {
return hex.EncodeToString(CRC64(data, table...))
}
// 计算一个指定文件的CRC64校验和返回字节数组。
func SumFile(file string, table ...string) ([]byte, error) {
f, err := os.Open(file)
if err != nil {
return nil, err
}
defer f.Close()
crcTable := append(table, "ISO")
hasher := crc64.New(tableSelect(crcTable[0]))
if _, err := io.Copy(hasher, f); err != nil {
return nil, err
}
return hasher.Sum(nil), nil
}
// 计算一个指定文件的CRC64校验和返回十六进制字符串。
func SumFileHex(file string, table ...string) (string, error) {
hash, err := SumFile(file, table...)
if err != nil {
return "", err
}
return hex.EncodeToString(hash), nil
}