func crypto/subtle.XORBytes

12 uses

	crypto/subtle (current package)
		xor.go#L17: func XORBytes(dst, x, y []byte) int {

	crypto/cipher
		cbc.go#L97: 		subtle.XORBytes(dst[:x.blockSize], src[:x.blockSize], iv)
		cbc.go#L187: 		subtle.XORBytes(dst[start:end], dst[start:end], src[prev:start])
		cbc.go#L196: 	subtle.XORBytes(dst[start:end], dst[start:end], x.iv)
		cfb.go#L44: 		n := subtle.XORBytes(dst, src, x.out[x.outUsed:])
		ctr.go#L110: 		n := subtle.XORBytes(dst, src, x.out[x.outUsed:])
		gcm.go#L340: 		subtle.XORBytes(out, src, mask[:])
		gcm.go#L347: 		subtle.XORBytes(out, src, mask[:])
		gcm.go#L361: 	subtle.XORBytes(out, S, tagMask[:])
		ofb.go#L83: 		n := subtle.XORBytes(dst, src, x.out[x.outUsed:])

	golang.org/x/crypto/sha3
		xor.go#L25: 		subtle.XORBytes(ab[:], ab[:], buf)

	mellium.im/sasl
		xor_go.go#L14: 	return subtle.XORBytes(dst, x, y)