func github.com/go-faster/xor.Bytes

9 uses

	github.com/go-faster/xor (current package)
		xor.go#L5: func Bytes(dst, a, b []byte) int {

	github.com/gotd/ige
		decrypt.go#L53: 		xor.Bytes(dst[o:o+b:o+b], src[o:o+b:o+b], m)
		decrypt.go#L55: 		xor.Bytes(dst[o:o+b:o+b], dst[o:o+b:o+b], c)
		encrypt.go#L51: 		xor.Bytes(dst[o:o+b:o+b], src[o:o+b:o+b], c)
		encrypt.go#L53: 		xor.Bytes(dst[o:o+b:o+b], dst[o:o+b:o+b], m)

	github.com/gotd/td/internal/crypto
		rsa_pad.go#L93: 			xor.Bytes(tempKeyXor, tempKey, aesEncryptedHash[:])
		rsa_pad.go#L135: 		xor.Bytes(tempKey, tempKeyXor, aesEncryptedHash[:])
		salt.go#L15: 	xor.Bytes(serverSalt[:], serverSalt[:], serverNonce[:8])

	github.com/gotd/td/internal/crypto/srp
		srp.go#L49: 	xor.Bytes(res[:], a[:], b[:])