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_ppc64le.go
Close
// Copyright 2019 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 gc && !purego // +build gc,!purego package chacha20 const bufSize = 256 //go:noescape func chaCha20_ctr32_vsx(out, inp *byte, len int, key *[8]uint32, counter *uint32) func (c *Cipher) xorKeyStreamBlocks(dst, src []byte) { chaCha20_ctr32_vsx(&dst[0], &src[0], len(src), &c.key, &c.counter) }