You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/vendor/mellium.im/sasl/xor_go.go

16 lines
293 B

// Copyright 2022 The Mellium Contributors.
// Use of this source code is governed by the BSD 2-clause
// license that can be found in the LICENSE file.
//go:build go1.20
package sasl
import (
"crypto/subtle"
)
func goXORBytes(dst, x, y []byte) int {
return subtle.XORBytes(dst, x, y)
}