func crypto/internal/constanttime.ByteEq
11 uses
crypto/internal/constanttime (current package)
constant_time.go#L23: func ByteEq(x, y uint8) int {
crypto/internal/fips140/edwards25519
tables.go#L96: cond := constanttime.ByteEq(xabs, uint8(j))
tables.go#L112: cond := constanttime.ByteEq(xabs, uint8(j))
crypto/internal/fips140/nistec
p224.go#L336: cond := constanttime.ByteEq(i, n)
p384.go#L336: cond := constanttime.ByteEq(i, n)
p521.go#L336: cond := constanttime.ByteEq(i, n)
crypto/internal/fips140/rsa
pkcs1v22.go#L436: firstByteIsZero := constanttime.ByteEq(em[0], 0)
pkcs1v22.go#L462: equals0 := constanttime.ByteEq(rest[i], 0)
pkcs1v22.go#L463: equals1 := constanttime.ByteEq(rest[i], 1)
crypto/internal/fips140/subtle
constant_time.go#L28: return constanttime.ByteEq(v, 0)
crypto/subtle
constant_time.go#L33: return constanttime.ByteEq(x, y)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |