]> Cypherpunks repositories - gostls13.git/commit
vendor/golang_org/x/crypto: revendor
authorMichael Munday <mike.munday@ibm.com>
Mon, 14 May 2018 23:26:36 +0000 (00:26 +0100)
committerBrad Fitzpatrick <bradfitz@golang.org>
Tue, 15 May 2018 16:29:04 +0000 (16:29 +0000)
commit212c9479e3a855bee05ffedda92c9be4405abb62
tree147752c9d20852d07b894f3e9053c57a83706c88
parent3fb3ca083c650b933919d3b6a45268fce339ac38
vendor/golang_org/x/crypto: revendor

This change updates the vendored copy of golang.org/x/crypto to
commit 1a580b3eff7814fc9b40602fd35256c63b50f491.

An import of golang.org/x/sys/cpu was replaced with an import of
internal/cpu as required by
https://github.com/golang/go/issues/24843#issuecomment-383194779.

The following bash command can be used to replicate this import
update:

find `pwd` -name '*.go' -exec sed -i 's/golang\.org\/x\/sys\/cpu/internal\/cpu/g' '{}' \;

Change-Id: Ic80d361f940a96c70e4196f594d791c63421d73c
Reviewed-on: https://go-review.googlesource.com/113175
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
33 files changed:
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305.go
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_vectors_test.go
src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/chacha_generic.go [deleted file]
src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/chacha_test.go [deleted file]
src/vendor/golang_org/x/crypto/cryptobyte/asn1.go
src/vendor/golang_org/x/crypto/cryptobyte/asn1_test.go
src/vendor/golang_org/x/crypto/cryptobyte/string.go
src/vendor/golang_org/x/crypto/curve25519/const_amd64.h
src/vendor/golang_org/x/crypto/curve25519/const_amd64.s
src/vendor/golang_org/x/crypto/curve25519/curve25519.go
src/vendor/golang_org/x/crypto/curve25519/doc.go
src/vendor/golang_org/x/crypto/curve25519/freeze_amd64.s
src/vendor/golang_org/x/crypto/curve25519/ladderstep_amd64.s
src/vendor/golang_org/x/crypto/curve25519/mul_amd64.s
src/vendor/golang_org/x/crypto/curve25519/square_amd64.s
src/vendor/golang_org/x/crypto/internal/chacha20/asm_s390x.s [new file with mode: 0644]
src/vendor/golang_org/x/crypto/internal/chacha20/chacha_generic.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/internal/chacha20/chacha_noasm.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/internal/chacha20/chacha_s390x.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/internal/chacha20/chacha_test.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/internal/chacha20/vectors_test.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/internal/chacha20/xor.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/poly1305.go
src/vendor/golang_org/x/crypto/poly1305/poly1305_test.go
src/vendor/golang_org/x/crypto/poly1305/sum_noasm.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/sum_ref.go
src/vendor/golang_org/x/crypto/poly1305/sum_s390x.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/sum_s390x.s [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/sum_vmsl_s390x.s [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/vectors_test.go [new file with mode: 0644]