func crypto/subtle.ConstantTimeByteEq

4 uses

	crypto/subtle (current package)
		constant_time.go#L26: func ConstantTimeByteEq(x, y uint8) int {

	crypto/rsa
		pkcs1v15.go#L227: 	firstByteIsZero := subtle.ConstantTimeByteEq(em[0], 0)
		pkcs1v15.go#L228: 	secondByteIsTwo := subtle.ConstantTimeByteEq(em[1], 2)
		pkcs1v15.go#L237: 		equals0 := subtle.ConstantTimeByteEq(em[i], 0)