func crypto/subtle.ConstantTimeSelect
6 uses
crypto/subtle (current package)
constant_time.go#L27: func ConstantTimeSelect(v, x, y int) int {
crypto/rsa
pkcs1v15.go#L256: index = subtle.ConstantTimeSelect(lookingForIndex&equals0, i, index)
pkcs1v15.go#L257: lookingForIndex = subtle.ConstantTimeSelect(equals0, 0, lookingForIndex)
pkcs1v15.go#L265: index = subtle.ConstantTimeSelect(valid, index+1, 0)
crypto/tls
conn.go#L438: n = subtle.ConstantTimeSelect(int(uint32(n)>>31), 0, n) // if n < 0 { n = 0 }
github.com/refraction-networking/utls
conn.go#L442: n = subtle.ConstantTimeSelect(int(uint32(n)>>31), 0, n) // if n < 0 { n = 0 }
 |
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. |