joy4/format/ts/checksum_test.go
2016-07-02 06:01:34 +08:00

13 lines
207 B
Go

package ts
import (
"testing"
)
func TestChecksum(t *testing.T) {
b := []byte("hello world")
b = append(b, []byte{0xbb, 0x08, 0xec, 0x87}...)
crc := updateIeeeCrc32(0xffffffff, b)
t.Logf("%x", crc)
}