mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-03 22:45:13 +08:00
7 lines
113 B
Go
7 lines
113 B
Go
package hash
|
|
|
|
import "hash/crc32"
|
|
|
|
func HashNumber(s string) uint {
|
|
return uint(crc32.ChecksumIEEE([]byte(s)))
|
|
} |