cloudflared-mirror/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go

15 lines
441 B
Go
Raw Permalink Normal View History

2019-01-23 21:42:10 +00:00
// 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 && !ppc64le) || (arm64 && !go1.11) || !gc || purego
// +build !arm64,!s390x,!ppc64le arm64,!go1.11 !gc purego
2019-01-23 21:42:10 +00:00
package chacha20
2020-06-12 05:03:09 +00:00
const bufSize = blockSize
2019-01-23 21:42:10 +00:00
2020-06-12 05:03:09 +00:00
func (s *Cipher) xorKeyStreamBlocks(dst, src []byte) {
s.xorKeyStreamBlocksGeneric(dst, src)
2019-01-23 21:42:10 +00:00
}