Use longer checksum again

This commit is contained in:
Ethan Frey 2017-09-13 14:03:28 +02:00
parent c8b6d29161
commit 50e7c07817
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ func NewCodec(words []string) (codec *WordCodec, err error) {
res := &WordCodec{
words: words,
// TODO: configure this outside???
// check: NewIEEECRC32(),
check: NewIBMCRC16(),
check: NewIEEECRC32(),
// check: NewIBMCRC16(),
}
return res, nil