mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
vendor: golang.org/x/crypto 0c34fe9e7dc2486962ef9867e3edb3503537209f
full diff: c1f2f97bff...0c34fe9e7d
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
5e62ca1a05
commit
28156f4a2e
30 changed files with 166 additions and 145 deletions
|
@ -151,7 +151,7 @@ github.com/golang/protobuf 84668698ea25b64748563aa20726
|
||||||
github.com/cloudflare/cfssl 5d63dbd981b5c408effbb58c442d54761ff94fbd # 1.3.2
|
github.com/cloudflare/cfssl 5d63dbd981b5c408effbb58c442d54761ff94fbd # 1.3.2
|
||||||
github.com/fernet/fernet-go 9eac43b88a5efb8651d24de9b68e87567e029736
|
github.com/fernet/fernet-go 9eac43b88a5efb8651d24de9b68e87567e029736
|
||||||
github.com/google/certificate-transparency-go 37a384cd035e722ea46e55029093e26687138edf # v1.0.20
|
github.com/google/certificate-transparency-go 37a384cd035e722ea46e55029093e26687138edf # v1.0.20
|
||||||
golang.org/x/crypto c1f2f97bffc9c53fc40a1a28a5b460094c0050d9
|
golang.org/x/crypto 0c34fe9e7dc2486962ef9867e3edb3503537209f
|
||||||
golang.org/x/time 555d28b269f0569763d25dbe1a237ae74c6bcc82
|
golang.org/x/time 555d28b269f0569763d25dbe1a237ae74c6bcc82
|
||||||
github.com/hashicorp/go-memdb cb9a474f84cc5e41b273b20c6927680b2a8776ad
|
github.com/hashicorp/go-memdb cb9a474f84cc5e41b273b20c6927680b2a8776ad
|
||||||
github.com/hashicorp/go-immutable-radix 826af9ccf0feeee615d546d69b11f8e98da8c8f1 git://github.com/tonistiigi/go-immutable-radix.git
|
github.com/hashicorp/go-immutable-radix 826af9ccf0feeee615d546d69b11f8e98da8c8f1 git://github.com/tonistiigi/go-immutable-radix.git
|
||||||
|
|
2
vendor/golang.org/x/crypto/README.md
generated
vendored
2
vendor/golang.org/x/crypto/README.md
generated
vendored
|
@ -1,5 +1,7 @@
|
||||||
# Go Cryptography
|
# Go Cryptography
|
||||||
|
|
||||||
|
[](https://pkg.go.dev/golang.org/x/crypto)
|
||||||
|
|
||||||
This repository holds supplementary Go cryptography libraries.
|
This repository holds supplementary Go cryptography libraries.
|
||||||
|
|
||||||
## Download/Install
|
## Download/Install
|
||||||
|
|
3
vendor/golang.org/x/crypto/chacha20/chacha_arm64.go
generated
vendored
3
vendor/golang.org/x/crypto/chacha20/chacha_arm64.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build go1.11,!gccgo,!purego
|
//go:build go1.11 && gc && !purego
|
||||||
|
// +build go1.11,gc,!purego
|
||||||
|
|
||||||
package chacha20
|
package chacha20
|
||||||
|
|
||||||
|
|
2
vendor/golang.org/x/crypto/chacha20/chacha_arm64.s
generated
vendored
2
vendor/golang.org/x/crypto/chacha20/chacha_arm64.s
generated
vendored
|
@ -2,7 +2,7 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build go1.11,!gccgo,!purego
|
// +build go1.11,gc,!purego
|
||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
|
3
vendor/golang.org/x/crypto/chacha20/chacha_noasm.go
generated
vendored
3
vendor/golang.org/x/crypto/chacha20/chacha_noasm.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !arm64,!s390x,!ppc64le arm64,!go1.11 gccgo purego
|
//go:build (!arm64 && !s390x && !ppc64le) || (arm64 && !go1.11) || !gc || purego
|
||||||
|
// +build !arm64,!s390x,!ppc64le arm64,!go1.11 !gc purego
|
||||||
|
|
||||||
package chacha20
|
package chacha20
|
||||||
|
|
||||||
|
|
3
vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go
generated
vendored
3
vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !gccgo,!purego
|
//go:build gc && !purego
|
||||||
|
// +build gc,!purego
|
||||||
|
|
||||||
package chacha20
|
package chacha20
|
||||||
|
|
||||||
|
|
2
vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s
generated
vendored
2
vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s
generated
vendored
|
@ -19,7 +19,7 @@
|
||||||
// The differences in this and the original implementation are
|
// The differences in this and the original implementation are
|
||||||
// due to the calling conventions and initialization of constants.
|
// due to the calling conventions and initialization of constants.
|
||||||
|
|
||||||
// +build !gccgo,!purego
|
// +build gc,!purego
|
||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
|
3
vendor/golang.org/x/crypto/chacha20/chacha_s390x.go
generated
vendored
3
vendor/golang.org/x/crypto/chacha20/chacha_s390x.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !gccgo,!purego
|
//go:build gc && !purego
|
||||||
|
// +build gc,!purego
|
||||||
|
|
||||||
package chacha20
|
package chacha20
|
||||||
|
|
||||||
|
|
2
vendor/golang.org/x/crypto/chacha20/chacha_s390x.s
generated
vendored
2
vendor/golang.org/x/crypto/chacha20/chacha_s390x.s
generated
vendored
|
@ -2,7 +2,7 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !gccgo,!purego
|
// +build gc,!purego
|
||||||
|
|
||||||
#include "go_asm.h"
|
#include "go_asm.h"
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
3
vendor/golang.org/x/crypto/curve25519/curve25519_amd64.go
generated
vendored
3
vendor/golang.org/x/crypto/curve25519/curve25519_amd64.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build amd64,!gccgo,!appengine,!purego
|
//go:build amd64 && gc && !purego
|
||||||
|
// +build amd64,gc,!purego
|
||||||
|
|
||||||
package curve25519
|
package curve25519
|
||||||
|
|
||||||
|
|
2
vendor/golang.org/x/crypto/curve25519/curve25519_amd64.s
generated
vendored
2
vendor/golang.org/x/crypto/curve25519/curve25519_amd64.s
generated
vendored
|
@ -5,7 +5,7 @@
|
||||||
// This code was translated into a form compatible with 6a from the public
|
// This code was translated into a form compatible with 6a from the public
|
||||||
// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html
|
// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html
|
||||||
|
|
||||||
// +build amd64,!gccgo,!appengine,!purego
|
// +build amd64,gc,!purego
|
||||||
|
|
||||||
#define REDMASK51 0x0007FFFFFFFFFFFF
|
#define REDMASK51 0x0007FFFFFFFFFFFF
|
||||||
|
|
||||||
|
|
3
vendor/golang.org/x/crypto/curve25519/curve25519_noasm.go
generated
vendored
3
vendor/golang.org/x/crypto/curve25519/curve25519_noasm.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !amd64 gccgo appengine purego
|
//go:build !amd64 || !gc || purego
|
||||||
|
// +build !amd64 !gc purego
|
||||||
|
|
||||||
package curve25519
|
package curve25519
|
||||||
|
|
||||||
|
|
1
vendor/golang.org/x/crypto/ed25519/ed25519.go
generated
vendored
1
vendor/golang.org/x/crypto/ed25519/ed25519.go
generated
vendored
|
@ -5,6 +5,7 @@
|
||||||
// In Go 1.13, the ed25519 package was promoted to the standard library as
|
// In Go 1.13, the ed25519 package was promoted to the standard library as
|
||||||
// crypto/ed25519, and this package became a wrapper for the standard library one.
|
// crypto/ed25519, and this package became a wrapper for the standard library one.
|
||||||
//
|
//
|
||||||
|
//go:build !go1.13
|
||||||
// +build !go1.13
|
// +build !go1.13
|
||||||
|
|
||||||
// Package ed25519 implements the Ed25519 signature algorithm. See
|
// Package ed25519 implements the Ed25519 signature algorithm. See
|
||||||
|
|
1
vendor/golang.org/x/crypto/ed25519/ed25519_go113.go
generated
vendored
1
vendor/golang.org/x/crypto/ed25519/ed25519_go113.go
generated
vendored
|
@ -2,6 +2,7 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
//go:build go1.13
|
||||||
// +build go1.13
|
// +build go1.13
|
||||||
|
|
||||||
// Package ed25519 implements the Ed25519 signature algorithm. See
|
// Package ed25519 implements the Ed25519 signature algorithm. See
|
||||||
|
|
6
vendor/golang.org/x/crypto/go.mod
generated
vendored
6
vendor/golang.org/x/crypto/go.mod
generated
vendored
|
@ -3,7 +3,7 @@ module golang.org/x/crypto
|
||||||
go 1.11
|
go 1.11
|
||||||
|
|
||||||
require (
|
require (
|
||||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
|
||||||
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
|
||||||
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1
|
||||||
)
|
)
|
||||||
|
|
3
vendor/golang.org/x/crypto/internal/subtle/aliasing.go
generated
vendored
3
vendor/golang.org/x/crypto/internal/subtle/aliasing.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !appengine
|
//go:build !purego
|
||||||
|
// +build !purego
|
||||||
|
|
||||||
// Package subtle implements functions that are often useful in cryptographic
|
// Package subtle implements functions that are often useful in cryptographic
|
||||||
// code but require careful thought to use correctly.
|
// code but require careful thought to use correctly.
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build appengine
|
//go:build purego
|
||||||
|
// +build purego
|
||||||
|
|
||||||
// Package subtle implements functions that are often useful in cryptographic
|
// Package subtle implements functions that are often useful in cryptographic
|
||||||
// code but require careful thought to use correctly.
|
// code but require careful thought to use correctly.
|
1
vendor/golang.org/x/crypto/poly1305/bits_compat.go
generated
vendored
1
vendor/golang.org/x/crypto/poly1305/bits_compat.go
generated
vendored
|
@ -2,6 +2,7 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
//go:build !go1.13
|
||||||
// +build !go1.13
|
// +build !go1.13
|
||||||
|
|
||||||
package poly1305
|
package poly1305
|
||||||
|
|
1
vendor/golang.org/x/crypto/poly1305/bits_go1.13.go
generated
vendored
1
vendor/golang.org/x/crypto/poly1305/bits_go1.13.go
generated
vendored
|
@ -2,6 +2,7 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
//go:build go1.13
|
||||||
// +build go1.13
|
// +build go1.13
|
||||||
|
|
||||||
package poly1305
|
package poly1305
|
||||||
|
|
3
vendor/golang.org/x/crypto/poly1305/mac_noasm.go
generated
vendored
3
vendor/golang.org/x/crypto/poly1305/mac_noasm.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !amd64,!ppc64le,!s390x gccgo purego
|
//go:build (!amd64 && !ppc64le && !s390x) || !gc || purego
|
||||||
|
// +build !amd64,!ppc64le,!s390x !gc purego
|
||||||
|
|
||||||
package poly1305
|
package poly1305
|
||||||
|
|
||||||
|
|
3
vendor/golang.org/x/crypto/poly1305/sum_amd64.go
generated
vendored
3
vendor/golang.org/x/crypto/poly1305/sum_amd64.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !gccgo,!purego
|
//go:build gc && !purego
|
||||||
|
// +build gc,!purego
|
||||||
|
|
||||||
package poly1305
|
package poly1305
|
||||||
|
|
||||||
|
|
2
vendor/golang.org/x/crypto/poly1305/sum_amd64.s
generated
vendored
2
vendor/golang.org/x/crypto/poly1305/sum_amd64.s
generated
vendored
|
@ -2,7 +2,7 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !gccgo,!purego
|
// +build gc,!purego
|
||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
|
3
vendor/golang.org/x/crypto/poly1305/sum_ppc64le.go
generated
vendored
3
vendor/golang.org/x/crypto/poly1305/sum_ppc64le.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !gccgo,!purego
|
//go:build gc && !purego
|
||||||
|
// +build gc,!purego
|
||||||
|
|
||||||
package poly1305
|
package poly1305
|
||||||
|
|
||||||
|
|
2
vendor/golang.org/x/crypto/poly1305/sum_ppc64le.s
generated
vendored
2
vendor/golang.org/x/crypto/poly1305/sum_ppc64le.s
generated
vendored
|
@ -2,7 +2,7 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !gccgo,!purego
|
// +build gc,!purego
|
||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
|
3
vendor/golang.org/x/crypto/poly1305/sum_s390x.go
generated
vendored
3
vendor/golang.org/x/crypto/poly1305/sum_s390x.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !gccgo,!purego
|
//go:build gc && !purego
|
||||||
|
// +build gc,!purego
|
||||||
|
|
||||||
package poly1305
|
package poly1305
|
||||||
|
|
||||||
|
|
2
vendor/golang.org/x/crypto/poly1305/sum_s390x.s
generated
vendored
2
vendor/golang.org/x/crypto/poly1305/sum_s390x.s
generated
vendored
|
@ -2,7 +2,7 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !gccgo,!purego
|
// +build gc,!purego
|
||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
|
3
vendor/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.go
generated
vendored
3
vendor/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build amd64,!appengine,!gccgo
|
//go:build amd64 && !purego && gc
|
||||||
|
// +build amd64,!purego,gc
|
||||||
|
|
||||||
package salsa
|
package salsa
|
||||||
|
|
||||||
|
|
237
vendor/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.s
generated
vendored
237
vendor/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.s
generated
vendored
|
@ -2,13 +2,13 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build amd64,!appengine,!gccgo
|
// +build amd64,!purego,gc
|
||||||
|
|
||||||
// This code was translated into a form compatible with 6a from the public
|
// This code was translated into a form compatible with 6a from the public
|
||||||
// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html
|
// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html
|
||||||
|
|
||||||
// func salsa2020XORKeyStream(out, in *byte, n uint64, nonce, key *byte)
|
// func salsa2020XORKeyStream(out, in *byte, n uint64, nonce, key *byte)
|
||||||
// This needs up to 64 bytes at 360(SP); hence the non-obvious frame size.
|
// This needs up to 64 bytes at 360(R12); hence the non-obvious frame size.
|
||||||
TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
MOVQ out+0(FP),DI
|
MOVQ out+0(FP),DI
|
||||||
MOVQ in+8(FP),SI
|
MOVQ in+8(FP),SI
|
||||||
|
@ -17,10 +17,8 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
MOVQ key+32(FP),R8
|
MOVQ key+32(FP),R8
|
||||||
|
|
||||||
MOVQ SP,R12
|
MOVQ SP,R12
|
||||||
MOVQ SP,R9
|
ADDQ $31, R12
|
||||||
ADDQ $31, R9
|
ANDQ $~31, R12
|
||||||
ANDQ $~31, R9
|
|
||||||
MOVQ R9, SP
|
|
||||||
|
|
||||||
MOVQ DX,R9
|
MOVQ DX,R9
|
||||||
MOVQ CX,DX
|
MOVQ CX,DX
|
||||||
|
@ -32,116 +30,116 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
MOVL 0(R10),R8
|
MOVL 0(R10),R8
|
||||||
MOVL 0(DX),AX
|
MOVL 0(DX),AX
|
||||||
MOVL 16(R10),R11
|
MOVL 16(R10),R11
|
||||||
MOVL CX,0(SP)
|
MOVL CX,0(R12)
|
||||||
MOVL R8, 4 (SP)
|
MOVL R8, 4 (R12)
|
||||||
MOVL AX, 8 (SP)
|
MOVL AX, 8 (R12)
|
||||||
MOVL R11, 12 (SP)
|
MOVL R11, 12 (R12)
|
||||||
MOVL 8(DX),CX
|
MOVL 8(DX),CX
|
||||||
MOVL 24(R10),R8
|
MOVL 24(R10),R8
|
||||||
MOVL 4(R10),AX
|
MOVL 4(R10),AX
|
||||||
MOVL 4(DX),R11
|
MOVL 4(DX),R11
|
||||||
MOVL CX,16(SP)
|
MOVL CX,16(R12)
|
||||||
MOVL R8, 20 (SP)
|
MOVL R8, 20 (R12)
|
||||||
MOVL AX, 24 (SP)
|
MOVL AX, 24 (R12)
|
||||||
MOVL R11, 28 (SP)
|
MOVL R11, 28 (R12)
|
||||||
MOVL 12(DX),CX
|
MOVL 12(DX),CX
|
||||||
MOVL 12(R10),DX
|
MOVL 12(R10),DX
|
||||||
MOVL 28(R10),R8
|
MOVL 28(R10),R8
|
||||||
MOVL 8(R10),AX
|
MOVL 8(R10),AX
|
||||||
MOVL DX,32(SP)
|
MOVL DX,32(R12)
|
||||||
MOVL CX, 36 (SP)
|
MOVL CX, 36 (R12)
|
||||||
MOVL R8, 40 (SP)
|
MOVL R8, 40 (R12)
|
||||||
MOVL AX, 44 (SP)
|
MOVL AX, 44 (R12)
|
||||||
MOVQ $1634760805,DX
|
MOVQ $1634760805,DX
|
||||||
MOVQ $857760878,CX
|
MOVQ $857760878,CX
|
||||||
MOVQ $2036477234,R8
|
MOVQ $2036477234,R8
|
||||||
MOVQ $1797285236,AX
|
MOVQ $1797285236,AX
|
||||||
MOVL DX,48(SP)
|
MOVL DX,48(R12)
|
||||||
MOVL CX, 52 (SP)
|
MOVL CX, 52 (R12)
|
||||||
MOVL R8, 56 (SP)
|
MOVL R8, 56 (R12)
|
||||||
MOVL AX, 60 (SP)
|
MOVL AX, 60 (R12)
|
||||||
CMPQ R9,$256
|
CMPQ R9,$256
|
||||||
JB BYTESBETWEEN1AND255
|
JB BYTESBETWEEN1AND255
|
||||||
MOVOA 48(SP),X0
|
MOVOA 48(R12),X0
|
||||||
PSHUFL $0X55,X0,X1
|
PSHUFL $0X55,X0,X1
|
||||||
PSHUFL $0XAA,X0,X2
|
PSHUFL $0XAA,X0,X2
|
||||||
PSHUFL $0XFF,X0,X3
|
PSHUFL $0XFF,X0,X3
|
||||||
PSHUFL $0X00,X0,X0
|
PSHUFL $0X00,X0,X0
|
||||||
MOVOA X1,64(SP)
|
MOVOA X1,64(R12)
|
||||||
MOVOA X2,80(SP)
|
MOVOA X2,80(R12)
|
||||||
MOVOA X3,96(SP)
|
MOVOA X3,96(R12)
|
||||||
MOVOA X0,112(SP)
|
MOVOA X0,112(R12)
|
||||||
MOVOA 0(SP),X0
|
MOVOA 0(R12),X0
|
||||||
PSHUFL $0XAA,X0,X1
|
PSHUFL $0XAA,X0,X1
|
||||||
PSHUFL $0XFF,X0,X2
|
PSHUFL $0XFF,X0,X2
|
||||||
PSHUFL $0X00,X0,X3
|
PSHUFL $0X00,X0,X3
|
||||||
PSHUFL $0X55,X0,X0
|
PSHUFL $0X55,X0,X0
|
||||||
MOVOA X1,128(SP)
|
MOVOA X1,128(R12)
|
||||||
MOVOA X2,144(SP)
|
MOVOA X2,144(R12)
|
||||||
MOVOA X3,160(SP)
|
MOVOA X3,160(R12)
|
||||||
MOVOA X0,176(SP)
|
MOVOA X0,176(R12)
|
||||||
MOVOA 16(SP),X0
|
MOVOA 16(R12),X0
|
||||||
PSHUFL $0XFF,X0,X1
|
PSHUFL $0XFF,X0,X1
|
||||||
PSHUFL $0X55,X0,X2
|
PSHUFL $0X55,X0,X2
|
||||||
PSHUFL $0XAA,X0,X0
|
PSHUFL $0XAA,X0,X0
|
||||||
MOVOA X1,192(SP)
|
MOVOA X1,192(R12)
|
||||||
MOVOA X2,208(SP)
|
MOVOA X2,208(R12)
|
||||||
MOVOA X0,224(SP)
|
MOVOA X0,224(R12)
|
||||||
MOVOA 32(SP),X0
|
MOVOA 32(R12),X0
|
||||||
PSHUFL $0X00,X0,X1
|
PSHUFL $0X00,X0,X1
|
||||||
PSHUFL $0XAA,X0,X2
|
PSHUFL $0XAA,X0,X2
|
||||||
PSHUFL $0XFF,X0,X0
|
PSHUFL $0XFF,X0,X0
|
||||||
MOVOA X1,240(SP)
|
MOVOA X1,240(R12)
|
||||||
MOVOA X2,256(SP)
|
MOVOA X2,256(R12)
|
||||||
MOVOA X0,272(SP)
|
MOVOA X0,272(R12)
|
||||||
BYTESATLEAST256:
|
BYTESATLEAST256:
|
||||||
MOVL 16(SP),DX
|
MOVL 16(R12),DX
|
||||||
MOVL 36 (SP),CX
|
MOVL 36 (R12),CX
|
||||||
MOVL DX,288(SP)
|
MOVL DX,288(R12)
|
||||||
MOVL CX,304(SP)
|
MOVL CX,304(R12)
|
||||||
SHLQ $32,CX
|
SHLQ $32,CX
|
||||||
ADDQ CX,DX
|
ADDQ CX,DX
|
||||||
ADDQ $1,DX
|
ADDQ $1,DX
|
||||||
MOVQ DX,CX
|
MOVQ DX,CX
|
||||||
SHRQ $32,CX
|
SHRQ $32,CX
|
||||||
MOVL DX, 292 (SP)
|
MOVL DX, 292 (R12)
|
||||||
MOVL CX, 308 (SP)
|
MOVL CX, 308 (R12)
|
||||||
ADDQ $1,DX
|
ADDQ $1,DX
|
||||||
MOVQ DX,CX
|
MOVQ DX,CX
|
||||||
SHRQ $32,CX
|
SHRQ $32,CX
|
||||||
MOVL DX, 296 (SP)
|
MOVL DX, 296 (R12)
|
||||||
MOVL CX, 312 (SP)
|
MOVL CX, 312 (R12)
|
||||||
ADDQ $1,DX
|
ADDQ $1,DX
|
||||||
MOVQ DX,CX
|
MOVQ DX,CX
|
||||||
SHRQ $32,CX
|
SHRQ $32,CX
|
||||||
MOVL DX, 300 (SP)
|
MOVL DX, 300 (R12)
|
||||||
MOVL CX, 316 (SP)
|
MOVL CX, 316 (R12)
|
||||||
ADDQ $1,DX
|
ADDQ $1,DX
|
||||||
MOVQ DX,CX
|
MOVQ DX,CX
|
||||||
SHRQ $32,CX
|
SHRQ $32,CX
|
||||||
MOVL DX,16(SP)
|
MOVL DX,16(R12)
|
||||||
MOVL CX, 36 (SP)
|
MOVL CX, 36 (R12)
|
||||||
MOVQ R9,352(SP)
|
MOVQ R9,352(R12)
|
||||||
MOVQ $20,DX
|
MOVQ $20,DX
|
||||||
MOVOA 64(SP),X0
|
MOVOA 64(R12),X0
|
||||||
MOVOA 80(SP),X1
|
MOVOA 80(R12),X1
|
||||||
MOVOA 96(SP),X2
|
MOVOA 96(R12),X2
|
||||||
MOVOA 256(SP),X3
|
MOVOA 256(R12),X3
|
||||||
MOVOA 272(SP),X4
|
MOVOA 272(R12),X4
|
||||||
MOVOA 128(SP),X5
|
MOVOA 128(R12),X5
|
||||||
MOVOA 144(SP),X6
|
MOVOA 144(R12),X6
|
||||||
MOVOA 176(SP),X7
|
MOVOA 176(R12),X7
|
||||||
MOVOA 192(SP),X8
|
MOVOA 192(R12),X8
|
||||||
MOVOA 208(SP),X9
|
MOVOA 208(R12),X9
|
||||||
MOVOA 224(SP),X10
|
MOVOA 224(R12),X10
|
||||||
MOVOA 304(SP),X11
|
MOVOA 304(R12),X11
|
||||||
MOVOA 112(SP),X12
|
MOVOA 112(R12),X12
|
||||||
MOVOA 160(SP),X13
|
MOVOA 160(R12),X13
|
||||||
MOVOA 240(SP),X14
|
MOVOA 240(R12),X14
|
||||||
MOVOA 288(SP),X15
|
MOVOA 288(R12),X15
|
||||||
MAINLOOP1:
|
MAINLOOP1:
|
||||||
MOVOA X1,320(SP)
|
MOVOA X1,320(R12)
|
||||||
MOVOA X2,336(SP)
|
MOVOA X2,336(R12)
|
||||||
MOVOA X13,X1
|
MOVOA X13,X1
|
||||||
PADDL X12,X1
|
PADDL X12,X1
|
||||||
MOVOA X1,X2
|
MOVOA X1,X2
|
||||||
|
@ -191,8 +189,8 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
PXOR X1,X12
|
PXOR X1,X12
|
||||||
PSRLL $14,X2
|
PSRLL $14,X2
|
||||||
PXOR X2,X12
|
PXOR X2,X12
|
||||||
MOVOA 320(SP),X1
|
MOVOA 320(R12),X1
|
||||||
MOVOA X12,320(SP)
|
MOVOA X12,320(R12)
|
||||||
MOVOA X9,X2
|
MOVOA X9,X2
|
||||||
PADDL X7,X2
|
PADDL X7,X2
|
||||||
MOVOA X2,X12
|
MOVOA X2,X12
|
||||||
|
@ -207,8 +205,8 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
PXOR X2,X3
|
PXOR X2,X3
|
||||||
PSRLL $25,X12
|
PSRLL $25,X12
|
||||||
PXOR X12,X3
|
PXOR X12,X3
|
||||||
MOVOA 336(SP),X2
|
MOVOA 336(R12),X2
|
||||||
MOVOA X0,336(SP)
|
MOVOA X0,336(R12)
|
||||||
MOVOA X6,X0
|
MOVOA X6,X0
|
||||||
PADDL X2,X0
|
PADDL X2,X0
|
||||||
MOVOA X0,X12
|
MOVOA X0,X12
|
||||||
|
@ -251,8 +249,8 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
PXOR X0,X1
|
PXOR X0,X1
|
||||||
PSRLL $14,X12
|
PSRLL $14,X12
|
||||||
PXOR X12,X1
|
PXOR X12,X1
|
||||||
MOVOA 320(SP),X0
|
MOVOA 320(R12),X0
|
||||||
MOVOA X1,320(SP)
|
MOVOA X1,320(R12)
|
||||||
MOVOA X4,X1
|
MOVOA X4,X1
|
||||||
PADDL X0,X1
|
PADDL X0,X1
|
||||||
MOVOA X1,X12
|
MOVOA X1,X12
|
||||||
|
@ -267,8 +265,8 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
PXOR X1,X2
|
PXOR X1,X2
|
||||||
PSRLL $14,X12
|
PSRLL $14,X12
|
||||||
PXOR X12,X2
|
PXOR X12,X2
|
||||||
MOVOA 336(SP),X12
|
MOVOA 336(R12),X12
|
||||||
MOVOA X2,336(SP)
|
MOVOA X2,336(R12)
|
||||||
MOVOA X14,X1
|
MOVOA X14,X1
|
||||||
PADDL X12,X1
|
PADDL X12,X1
|
||||||
MOVOA X1,X2
|
MOVOA X1,X2
|
||||||
|
@ -311,8 +309,8 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
PXOR X1,X0
|
PXOR X1,X0
|
||||||
PSRLL $14,X2
|
PSRLL $14,X2
|
||||||
PXOR X2,X0
|
PXOR X2,X0
|
||||||
MOVOA 320(SP),X1
|
MOVOA 320(R12),X1
|
||||||
MOVOA X0,320(SP)
|
MOVOA X0,320(R12)
|
||||||
MOVOA X8,X0
|
MOVOA X8,X0
|
||||||
PADDL X14,X0
|
PADDL X14,X0
|
||||||
MOVOA X0,X2
|
MOVOA X0,X2
|
||||||
|
@ -327,8 +325,8 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
PXOR X0,X6
|
PXOR X0,X6
|
||||||
PSRLL $25,X2
|
PSRLL $25,X2
|
||||||
PXOR X2,X6
|
PXOR X2,X6
|
||||||
MOVOA 336(SP),X2
|
MOVOA 336(R12),X2
|
||||||
MOVOA X12,336(SP)
|
MOVOA X12,336(R12)
|
||||||
MOVOA X3,X0
|
MOVOA X3,X0
|
||||||
PADDL X2,X0
|
PADDL X2,X0
|
||||||
MOVOA X0,X12
|
MOVOA X0,X12
|
||||||
|
@ -378,14 +376,14 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
PXOR X0,X2
|
PXOR X0,X2
|
||||||
PSRLL $14,X12
|
PSRLL $14,X12
|
||||||
PXOR X12,X2
|
PXOR X12,X2
|
||||||
MOVOA 320(SP),X12
|
MOVOA 320(R12),X12
|
||||||
MOVOA 336(SP),X0
|
MOVOA 336(R12),X0
|
||||||
SUBQ $2,DX
|
SUBQ $2,DX
|
||||||
JA MAINLOOP1
|
JA MAINLOOP1
|
||||||
PADDL 112(SP),X12
|
PADDL 112(R12),X12
|
||||||
PADDL 176(SP),X7
|
PADDL 176(R12),X7
|
||||||
PADDL 224(SP),X10
|
PADDL 224(R12),X10
|
||||||
PADDL 272(SP),X4
|
PADDL 272(R12),X4
|
||||||
MOVD X12,DX
|
MOVD X12,DX
|
||||||
MOVD X7,CX
|
MOVD X7,CX
|
||||||
MOVD X10,R8
|
MOVD X10,R8
|
||||||
|
@ -446,10 +444,10 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
MOVL CX,196(DI)
|
MOVL CX,196(DI)
|
||||||
MOVL R8,200(DI)
|
MOVL R8,200(DI)
|
||||||
MOVL R9,204(DI)
|
MOVL R9,204(DI)
|
||||||
PADDL 240(SP),X14
|
PADDL 240(R12),X14
|
||||||
PADDL 64(SP),X0
|
PADDL 64(R12),X0
|
||||||
PADDL 128(SP),X5
|
PADDL 128(R12),X5
|
||||||
PADDL 192(SP),X8
|
PADDL 192(R12),X8
|
||||||
MOVD X14,DX
|
MOVD X14,DX
|
||||||
MOVD X0,CX
|
MOVD X0,CX
|
||||||
MOVD X5,R8
|
MOVD X5,R8
|
||||||
|
@ -510,10 +508,10 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
MOVL CX,212(DI)
|
MOVL CX,212(DI)
|
||||||
MOVL R8,216(DI)
|
MOVL R8,216(DI)
|
||||||
MOVL R9,220(DI)
|
MOVL R9,220(DI)
|
||||||
PADDL 288(SP),X15
|
PADDL 288(R12),X15
|
||||||
PADDL 304(SP),X11
|
PADDL 304(R12),X11
|
||||||
PADDL 80(SP),X1
|
PADDL 80(R12),X1
|
||||||
PADDL 144(SP),X6
|
PADDL 144(R12),X6
|
||||||
MOVD X15,DX
|
MOVD X15,DX
|
||||||
MOVD X11,CX
|
MOVD X11,CX
|
||||||
MOVD X1,R8
|
MOVD X1,R8
|
||||||
|
@ -574,10 +572,10 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
MOVL CX,228(DI)
|
MOVL CX,228(DI)
|
||||||
MOVL R8,232(DI)
|
MOVL R8,232(DI)
|
||||||
MOVL R9,236(DI)
|
MOVL R9,236(DI)
|
||||||
PADDL 160(SP),X13
|
PADDL 160(R12),X13
|
||||||
PADDL 208(SP),X9
|
PADDL 208(R12),X9
|
||||||
PADDL 256(SP),X3
|
PADDL 256(R12),X3
|
||||||
PADDL 96(SP),X2
|
PADDL 96(R12),X2
|
||||||
MOVD X13,DX
|
MOVD X13,DX
|
||||||
MOVD X9,CX
|
MOVD X9,CX
|
||||||
MOVD X3,R8
|
MOVD X3,R8
|
||||||
|
@ -638,7 +636,7 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
MOVL CX,244(DI)
|
MOVL CX,244(DI)
|
||||||
MOVL R8,248(DI)
|
MOVL R8,248(DI)
|
||||||
MOVL R9,252(DI)
|
MOVL R9,252(DI)
|
||||||
MOVQ 352(SP),R9
|
MOVQ 352(R12),R9
|
||||||
SUBQ $256,R9
|
SUBQ $256,R9
|
||||||
ADDQ $256,SI
|
ADDQ $256,SI
|
||||||
ADDQ $256,DI
|
ADDQ $256,DI
|
||||||
|
@ -650,17 +648,17 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
CMPQ R9,$64
|
CMPQ R9,$64
|
||||||
JAE NOCOPY
|
JAE NOCOPY
|
||||||
MOVQ DI,DX
|
MOVQ DI,DX
|
||||||
LEAQ 360(SP),DI
|
LEAQ 360(R12),DI
|
||||||
MOVQ R9,CX
|
MOVQ R9,CX
|
||||||
REP; MOVSB
|
REP; MOVSB
|
||||||
LEAQ 360(SP),DI
|
LEAQ 360(R12),DI
|
||||||
LEAQ 360(SP),SI
|
LEAQ 360(R12),SI
|
||||||
NOCOPY:
|
NOCOPY:
|
||||||
MOVQ R9,352(SP)
|
MOVQ R9,352(R12)
|
||||||
MOVOA 48(SP),X0
|
MOVOA 48(R12),X0
|
||||||
MOVOA 0(SP),X1
|
MOVOA 0(R12),X1
|
||||||
MOVOA 16(SP),X2
|
MOVOA 16(R12),X2
|
||||||
MOVOA 32(SP),X3
|
MOVOA 32(R12),X3
|
||||||
MOVOA X1,X4
|
MOVOA X1,X4
|
||||||
MOVQ $20,CX
|
MOVQ $20,CX
|
||||||
MAINLOOP2:
|
MAINLOOP2:
|
||||||
|
@ -791,10 +789,10 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
PSHUFL $0X39,X3,X3
|
PSHUFL $0X39,X3,X3
|
||||||
PXOR X6,X0
|
PXOR X6,X0
|
||||||
JA MAINLOOP2
|
JA MAINLOOP2
|
||||||
PADDL 48(SP),X0
|
PADDL 48(R12),X0
|
||||||
PADDL 0(SP),X1
|
PADDL 0(R12),X1
|
||||||
PADDL 16(SP),X2
|
PADDL 16(R12),X2
|
||||||
PADDL 32(SP),X3
|
PADDL 32(R12),X3
|
||||||
MOVD X0,CX
|
MOVD X0,CX
|
||||||
MOVD X1,R8
|
MOVD X1,R8
|
||||||
MOVD X2,R9
|
MOVD X2,R9
|
||||||
|
@ -855,16 +853,16 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
MOVL R8,44(DI)
|
MOVL R8,44(DI)
|
||||||
MOVL R9,28(DI)
|
MOVL R9,28(DI)
|
||||||
MOVL AX,12(DI)
|
MOVL AX,12(DI)
|
||||||
MOVQ 352(SP),R9
|
MOVQ 352(R12),R9
|
||||||
MOVL 16(SP),CX
|
MOVL 16(R12),CX
|
||||||
MOVL 36 (SP),R8
|
MOVL 36 (R12),R8
|
||||||
ADDQ $1,CX
|
ADDQ $1,CX
|
||||||
SHLQ $32,R8
|
SHLQ $32,R8
|
||||||
ADDQ R8,CX
|
ADDQ R8,CX
|
||||||
MOVQ CX,R8
|
MOVQ CX,R8
|
||||||
SHRQ $32,R8
|
SHRQ $32,R8
|
||||||
MOVL CX,16(SP)
|
MOVL CX,16(R12)
|
||||||
MOVL R8, 36 (SP)
|
MOVL R8, 36 (R12)
|
||||||
CMPQ R9,$64
|
CMPQ R9,$64
|
||||||
JA BYTESATLEAST65
|
JA BYTESATLEAST65
|
||||||
JAE BYTESATLEAST64
|
JAE BYTESATLEAST64
|
||||||
|
@ -874,7 +872,6 @@ TEXT ·salsa2020XORKeyStream(SB),0,$456-40 // frame = 424 + 32 byte alignment
|
||||||
REP; MOVSB
|
REP; MOVSB
|
||||||
BYTESATLEAST64:
|
BYTESATLEAST64:
|
||||||
DONE:
|
DONE:
|
||||||
MOVQ R12,SP
|
|
||||||
RET
|
RET
|
||||||
BYTESATLEAST65:
|
BYTESATLEAST65:
|
||||||
SUBQ $64,R9
|
SUBQ $64,R9
|
||||||
|
|
3
vendor/golang.org/x/crypto/salsa20/salsa/salsa20_noasm.go
generated
vendored
3
vendor/golang.org/x/crypto/salsa20/salsa/salsa20_noasm.go
generated
vendored
|
@ -2,7 +2,8 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// +build !amd64 appengine gccgo
|
//go:build !amd64 || purego || !gc
|
||||||
|
// +build !amd64 purego !gc
|
||||||
|
|
||||||
package salsa
|
package salsa
|
||||||
|
|
||||||
|
|
4
vendor/golang.org/x/crypto/ssh/server.go
generated
vendored
4
vendor/golang.org/x/crypto/ssh/server.go
generated
vendored
|
@ -572,6 +572,10 @@ userAuthLoop:
|
||||||
perms = candidate.perms
|
perms = candidate.perms
|
||||||
}
|
}
|
||||||
case "gssapi-with-mic":
|
case "gssapi-with-mic":
|
||||||
|
if config.GSSAPIWithMICConfig == nil {
|
||||||
|
authErr = errors.New("ssh: gssapi-with-mic auth not configured")
|
||||||
|
break
|
||||||
|
}
|
||||||
gssapiConfig := config.GSSAPIWithMICConfig
|
gssapiConfig := config.GSSAPIWithMICConfig
|
||||||
userAuthRequestGSSAPI, err := parseGSSAPIPayload(userAuthReq.Payload)
|
userAuthRequestGSSAPI, err := parseGSSAPIPayload(userAuthReq.Payload)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue