An open API service indexing awesome lists of open source software.

https://github.com/itmisx/crc

crc校验包,支持crc8和crc16,主要用于iot应用,检查数据的完整性
https://github.com/itmisx/crc

crc crc16 crc8

Last synced: 7 months ago
JSON representation

crc校验包,支持crc8和crc16,主要用于iot应用,检查数据的完整性

Awesome Lists containing this project

README

          

# crc

crc 校验在物联网数据校验中经常使用,这里封装了crc8和crc16的计算方法。

#### install

`go get -u github.com/itmisx/crc`

#### example

````go
// crc8
var data = []byte{0x01,0x02}
crc8 := crc.Crc8(data)
// crc16
var data = []byte{0x01,0x02}
crc16 := crc.Crc16(data)
````