68 lines
1.6 KiB
Go
68 lines
1.6 KiB
Go
// 提供CRC64校验和计算功能。
|
||
package crc64
|
||
|
||
import (
|
||
"encoding/hex"
|
||
"fmt"
|
||
"hash/crc64"
|
||
"io"
|
||
"os"
|
||
)
|
||
|
||
type CRC64Mode int
|
||
|
||
const (
|
||
ECMA CRC64Mode = iota
|
||
ISO
|
||
)
|
||
|
||
// 选择一个CRC64校验表。
|
||
func tableSelect(mode CRC64Mode) *crc64.Table {
|
||
switch mode {
|
||
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, mode ...CRC64Mode) []byte {
|
||
crcTable := append(mode, ISO)
|
||
hasher := crc64.New(tableSelect(crcTable[0]))
|
||
hasher.Write(data)
|
||
return hasher.Sum(nil)
|
||
}
|
||
|
||
// 计算给定字节数组的CRC64校验和,返回十六进制字符串。
|
||
func CRC64Hex(data []byte, mode ...CRC64Mode) string {
|
||
return hex.EncodeToString(CRC64(data, mode...))
|
||
}
|
||
|
||
// 计算一个指定文件的CRC64校验和,返回字节数组。
|
||
func SumFile(file string, mode ...CRC64Mode) ([]byte, error) {
|
||
f, err := os.Open(file)
|
||
if err != nil {
|
||
return nil, fmt.Errorf("未能打开指定文件,%w", err)
|
||
}
|
||
defer f.Close()
|
||
|
||
crcTable := append(mode, ISO)
|
||
hasher := crc64.New(tableSelect(crcTable[0]))
|
||
if _, err := io.Copy(hasher, f); err != nil {
|
||
return nil, fmt.Errorf("未能读取指定文件的内容,%w", err)
|
||
}
|
||
return hasher.Sum(nil), nil
|
||
}
|
||
|
||
// 计算一个指定文件的CRC64校验和,返回十六进制字符串。
|
||
func SumFileHex(file string, mode ...CRC64Mode) (string, error) {
|
||
hash, err := SumFile(file, mode...)
|
||
if err != nil {
|
||
return "", err
|
||
}
|
||
return hex.EncodeToString(hash), nil
|
||
}
|