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:])
|
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |