OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.19.4
/
src
/
vendor
/
golang.org
/
x
/
crypto
/
chacha20
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
chacha_arm64.go
479 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
chacha_arm64.s
7.99 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
chacha_generic.go
13.85 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
chacha_noasm.go
441 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
chacha_ppc64le.go
468 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
chacha_ppc64le.s
9.12 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
chacha_s390x.go
764 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
chacha_s390x.s
5.36 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
xor.go
1.24 KB
12/01/2022 06:13:01 PM
rw-r--r--
Editing: chacha_noasm.go
Close
// 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 package chacha20 const bufSize = blockSize func (s *Cipher) xorKeyStreamBlocks(dst, src []byte) { s.xorKeyStreamBlocksGeneric(dst, src) }