]> Cypherpunks repositories - gostls13.git/commit
vendor: add golang.org/x/crypto/{chacha20poly1305,poly1305}
authorAdam Langley <agl@golang.org>
Wed, 12 Oct 2016 17:18:37 +0000 (10:18 -0700)
committerAdam Langley <agl@golang.org>
Mon, 17 Oct 2016 18:11:24 +0000 (18:11 +0000)
commit77b6a08e0d3061cbf505394f1d0c5bc9d16fa6cb
treeab7fe29260bb9fff6984408865390990847d8af2
parent9a97c3bfe41d1ed768ea3bd3d8f0f52b8a51bb62
vendor: add golang.org/x/crypto/{chacha20poly1305,poly1305}

This change imports the chacha20poly1305 and poly1305 packages from
x/crypto at 5f4e837b98443e9e7a65072235205993af565d85. These packages
will be used to support the ChaCha20-Poly1305 AEAD in crypto/tls.

Change-Id: I1a38d671ef9aeff3bc41e3924655883d465a5617
Reviewed-on: https://go-review.googlesource.com/30956
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
16 files changed:
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s [new file with mode: 0644]
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_test.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_test_vectors.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/chacha_generic.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/chacha_test.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/poly1305.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/poly1305_test.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/sum_amd64.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/sum_amd64.s [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/sum_arm.go [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/sum_arm.s [new file with mode: 0644]
src/vendor/golang_org/x/crypto/poly1305/sum_ref.go [new file with mode: 0644]