]> Cypherpunks.ru repositories - govpn.git/blob - internal/chacha20/chacha_noasm.go
Preparing move to modules
[govpn.git] / internal / chacha20 / chacha_noasm.go
1 // Copyright 2018 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // +build !ppc64le,!arm64,!s390x arm64,!go1.11 gccgo appengine
6
7 package chacha20
8
9 const (
10         bufSize = 64
11         haveAsm = false
12 )
13
14 func (*Cipher) xorKeyStreamAsm(dst, src []byte) {
15         panic("not implemented")
16 }