Files
hiscaler-gox/cryptox/crc32.go
scheibling b4eb50ab55
Some checks failed
Go / build (push) Failing after 7s
Created
2025-04-08 19:16:39 +02:00

8 lines
108 B
Go

package cryptox
import "hash/crc32"
func Crc32(s string) uint32 {
return crc32.ChecksumIEEE([]byte(s))
}