Files
PrivateCaptcha/pkg/common/fingerprint.go
T

10 lines
140 B
Go

package common
import randv2 "math/rand/v2"
type TFingerprint = uint64
func RandomFingerprint() TFingerprint {
return randv2.Uint64()
}