- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ConstantTimeEq (0.67 sec)
-
lib/fips140/v1.0.0.zip
value. func ConstantTimeSelect(v, x, y int) int { return ^(v-1)&x | (v-1)&y } // ConstantTimeByteEq returns 1 if x == y and 0 otherwise. func ConstantTimeByteEq(x, y uint8) int { return int((uint32(x^y) - 1) >> 31) } // ConstantTimeEq returns 1 if x == y and 0 otherwise. func ConstantTimeEq(x, y int32) int { return int((uint64(uint32(x^y)) - 1) >> 63) } // ConstantTimeCopy copies the contents of y into x (a slice of equal length) // if v == 1. If v == 0, x is left unchanged. Its behavior is undefined if...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
api/go1.txt
pkg crypto/subtle, func ConstantTimeByteEq(uint8, uint8) int pkg crypto/subtle, func ConstantTimeCompare([]uint8, []uint8) int pkg crypto/subtle, func ConstantTimeCopy(int, []uint8, []uint8) pkg crypto/subtle, func ConstantTimeEq(int32, int32) int pkg crypto/subtle, func ConstantTimeSelect(int, int, int) int pkg crypto/tls, const NoClientCert ClientAuthType pkg crypto/tls, const RequestClientCert ClientAuthType
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)