aboutsummaryrefslogtreecommitdiff
path: root/internal/wycheproof/eddsa_test.go
diff options
context:
space:
mode:
authorSebastiaan van Stijn <github@gone.nl>2023-09-25 17:15:31 +0000
committerFilippo Valsorda <filippo@golang.org>2023-09-27 14:30:17 +0000
commitb665ba6f6f9abc2ab124f8ec2cb44de0e44ce077 (patch)
treede94f42523ac448da2121708155c08baa2123a57 /internal/wycheproof/eddsa_test.go
parenta1aeb9b34eb6b8f469bbd66b9cd1c9d905cb3714 (diff)
downloadgo-x-crypto-b665ba6f6f9abc2ab124f8ec2cb44de0e44ce077.tar.xz
all: use crypto/ed25519 instead of golang.org/x/crypto/ed25519
This is a follow-up to CL 317169, which dropped go1.12 compatibility, and made the golang.org/x/crypto/ed25519 package an alias / wrapper for crypto/ed25519 in stdlib. This patch updates uses within this repository to use stdlib instead of depending on the wrapper. With this patch applied, the only remaining use of the wrapper is in ed25519_test, which appears to be in place to verify compatibility of the wrapper itself. Change-Id: I0195396102a75ae20bdd82ca8ab59855c0eb5cea GitHub-Last-Rev: 24dbec563cbd84bc47bdc7736b0245fc83dd3353 GitHub-Pull-Request: golang/crypto#238 Reviewed-on: https://go-review.googlesource.com/c/crypto/+/448238 Reviewed-by: Bryan Mills <bcmills@google.com> Run-TryBot: Nicola Murino <nicola.murino@gmail.com> Reviewed-by: Nicola Murino <nicola.murino@gmail.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Joedian Reid <joedian@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: Than McIntosh <thanm@google.com>
Diffstat (limited to 'internal/wycheproof/eddsa_test.go')
-rw-r--r--internal/wycheproof/eddsa_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/wycheproof/eddsa_test.go b/internal/wycheproof/eddsa_test.go
index 0a7fbb7..118dfc0 100644
--- a/internal/wycheproof/eddsa_test.go
+++ b/internal/wycheproof/eddsa_test.go
@@ -8,9 +8,8 @@
package wycheproof
import (
+ "crypto/ed25519"
"testing"
-
- "golang.org/x/crypto/ed25519"
)
func TestEddsa(t *testing.T) {