https://github.com/galaco/checksum
Checksum creator using valves key
https://github.com/galaco/checksum
counter-strike-global-offensive counter-strike-source source-engine source-sdk valve
Last synced: 8 months ago
JSON representation
Checksum creator using valves key
- Host: GitHub
- URL: https://github.com/galaco/checksum
- Owner: Galaco
- Created: 2019-09-13T03:34:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T02:45:24.000Z (about 2 years ago)
- Last Synced: 2025-06-28T01:01:51.536Z (9 months ago)
- Topics: counter-strike-global-offensive, counter-strike-source, source-engine, source-sdk, valve
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://godoc.org/github.com/Galaco/checksum)
[](https://goreportcard.com/badge/github.com/galaco/checksum)
[](https://travis-ci.com/Galaco/checksum)
# Checksum
> Source engine CRC32 Signing
### Usage
```go
package main
import (
"github.com/galaco/checksum"
"log"
)
func main() {
data := "foobar"
crc := checksum.CRC32([]byte(data))
log.Println(crc)
}
```