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