mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 18:04:55 +01:00
10 lines
143 B
Go
10 lines
143 B
Go
|
//go:build go1.20
|
||
|
|
||
|
package quickxorhash
|
||
|
|
||
|
import "crypto/subtle"
|
||
|
|
||
|
func xorBytes(dst, src []byte) int {
|
||
|
return subtle.XORBytes(dst, src, dst)
|
||
|
}
|