Files
hiscaler-gox/cryptox/crc32.go

8 lines
108 B
Go
Raw Normal View History

2025-04-08 19:16:39 +02:00
package cryptox
import "hash/crc32"
func Crc32(s string) uint32 {
return crc32.ChecksumIEEE([]byte(s))
}