github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/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 }