func crypto/subtle.XORBytes
11 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#L374: subtle.XORBytes(out, in, mask[:])
gcm.go#L382: subtle.XORBytes(out, in, mask[:])
gcm.go#L424: subtle.XORBytes(out, out, tagMask[:])
ofb.go#L72: n := subtle.XORBytes(dst, src, x.out[x.outUsed:])
vendor/golang.org/x/crypto/sha3
xor.go#L25: subtle.XORBytes(ab[:], ab[:], buf)
 |
The pages are generated with Golds v0.7.6. (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. |