func crypto/subtle.XORBytes
11 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
legacy_hash.go#L154: x := subtle.XORBytes(d.a[d.n:d.rate], d.a[d.n:d.rate], p)
 |
The pages are generated with Golds v0.8.4. (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. |