github.com/artpar/rclone@v1.67.3/backend/onedrive/quickxorhash/xor_1.20.go (about) 1 //go:build go1.20 2 3 package quickxorhash 4 5 import "crypto/subtle" 6 7 func xorBytes(dst, src []byte) int { 8 return subtle.XORBytes(dst, src, dst) 9 }