func crypto/subtle.XORBytes

10 uses

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

	crypto/cipher
		cbc.go#L87: 		subtle.XORBytes(dst[:x.blockSize], src[:x.blockSize], iv)
		cbc.go#L169: 		subtle.XORBytes(dst[start:end], dst[start:end], src[prev:start])
		cbc.go#L178: 	subtle.XORBytes(dst[start:end], dst[start:end], x.iv)
		cfb.go#L43: 		n := subtle.XORBytes(dst, src, x.out[x.outUsed:])
		ctr.go#L90: 		n := subtle.XORBytes(dst, src, x.out[x.outUsed:])
		gcm.go#L376: 		subtle.XORBytes(out, in, mask[:])
		gcm.go#L384: 		subtle.XORBytes(out, in, mask[:])
		gcm.go#L426: 	subtle.XORBytes(out, out, tagMask[:])
		ofb.go#L72: 		n := subtle.XORBytes(dst, src, x.out[x.outUsed:])