Files
amcs/vendor/mellium.im/sasl/xor_go.go
Hein 1adf50e3db
CI / build-and-test (push) Failing after 1s
Release / release (push) Failing after 19m26s
fix(go.sum): update ResolveSpec dependency to v1.0.87
2026-06-23 13:17:16 +02:00

16 lines
293 B
Go

// 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)
}