idun/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go
Renovate Bot 56f8331853
Some checks failed
Dev Version / Release (push) Has been cancelled
chore(deps): update module golang.org/x/crypto to v0.31.0
2024-12-11 18:26:09 +00:00

13 lines
371 B
Go

// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build (!arm64 && !s390x && !ppc64 && !ppc64le) || !gc || purego
package chacha20
const bufSize = blockSize
func (s *Cipher) xorKeyStreamBlocks(dst, src []byte) {
s.xorKeyStreamBlocksGeneric(dst, src)
}