aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/crypto/internal/chacha20/chacha_s390x.go
blob: 0c1c671c40b77f6bdce6ecf16c4fc69ce57efb55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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.

// +build s390x,!gccgo,!appengine

package chacha20

var haveAsm = hasVectorFacility()

const bufSize = 256

// hasVectorFacility reports whether the machine supports the vector
// facility (vx).
// Implementation in asm_s390x.s.
func hasVectorFacility() bool

// xorKeyStreamVX is an assembly implementation of XORKeyStream. It must only
// be called when the vector facility is available.
// Implementation in asm_s390x.s.
//go:noescape
func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32, buf *[256]byte, len *int)

func (c *Cipher) xorKeyStreamAsm(dst, src []byte) {
	xorKeyStreamVX(dst, src, &c.key, &c.nonce, &c.counter, &c.buf, &c.len)
}

// EXRL targets, DO NOT CALL!
func mvcSrcToBuf()
func mvcBufToDst()