From 2fa09a20e56eb27f7cec635be42fc3137c091085 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 24 Feb 2017 10:35:43 -0800 Subject: [PATCH] vendor/golang_org/x/crypto/chacha20poly1305: revendor Brings in chacha20poly1305 directory from golang.org/x/crypto revision 453249f01cfeb54c3d549ddb75ff152ca243f9d8, adding: CL 35874: crypto/chacha20poly1305/internal/chacha20: add missing copyright header CL 35875: crypto/chacha20poly1305: rename test vectors file Fixes #19155. Change-Id: I25cf83d060113f6b2a197f243a25614440008f7e Reviewed-on: https://go-review.googlesource.com/37408 Reviewed-by: Brad Fitzpatrick --- ...y1305_test_vectors.go => chacha20poly1305_vectors_test.go} | 0 .../crypto/chacha20poly1305/internal/chacha20/chacha_test.go | 4 ++++ 2 files changed, 4 insertions(+) rename src/vendor/golang_org/x/crypto/chacha20poly1305/{chacha20poly1305_test_vectors.go => chacha20poly1305_vectors_test.go} (100%) diff --git a/src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_test_vectors.go b/src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_vectors_test.go similarity index 100% rename from src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_test_vectors.go rename to src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_vectors_test.go diff --git a/src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/chacha_test.go b/src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/chacha_test.go index ca9663f52c..b80d34cdd7 100644 --- a/src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/chacha_test.go +++ b/src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/chacha_test.go @@ -1,3 +1,7 @@ +// Copyright 2016 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. + package chacha20 import ( -- 2.51.0