Categorygithub.com/sigurn/crc16
repositorypackage
0.0.0-20240131213347-83fcde1e29d1
Repository: https://github.com/sigurn/crc16.git
Documentation: pkg.go.dev

# README

crc16

Build Status Coverage Status Go Reference

Go implementation of CRC-16 calculation for majority of widely-used polynomials.
It implements the golang hash.Hash interface.

Usage

package main

import (
	"fmt"

	"github.com/sigurn/crc16"
)

func main() {
	table := crc16.MakeTable(crc16.CRC16_MAXIM)

	crc := crc16.Checksum([]byte("Hello world!"), table)
	fmt.Printf("CRC-16 MAXIM: %X\n", crc)

	// using the standard library hash.Hash interface
	h := crc16.New(table)
	h.Write([]byte("Hello world!"))
	fmt.Printf("CRC-16 MAXIM: %X\n", h.Sum16())
}

Documentation

For more documentation see package documentation