mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-04-30 01:39:42 -05:00
10 lines
140 B
Go
10 lines
140 B
Go
package common
|
|
|
|
import randv2 "math/rand/v2"
|
|
|
|
type TFingerprint = uint64
|
|
|
|
func RandomFingerprint() TFingerprint {
|
|
return randv2.Uint64()
|
|
}
|