We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
Checksum creator using valves key
Source engine CRC32 Signing
package mainimport ("github.com/galaco/checksum""log")funcmain() {data:="foobar"crc:=checksum.CRC32([]byte(data))log.Println(crc)}