From 1d677bde070b9ee3aaa12032c474d96c07a3409e Mon Sep 17 00:00:00 2001 From: rasool Date: Wed, 16 Nov 2022 08:30:07 +0330 Subject: [PATCH] renaming import path to toktokey --- ed25519.go | 2 +- ed25519_test.go | 2 +- extra25519/extra25519.go | 2 +- extra25519/extra25519_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ed25519.go b/ed25519.go index e5f873f..edc7693 100644 --- a/ed25519.go +++ b/ed25519.go @@ -14,7 +14,7 @@ import ( "crypto/subtle" "io" - "github.com/agl/ed25519/edwards25519" + "github.com/toktokey/ed25519/edwards25519" ) const ( diff --git a/ed25519_test.go b/ed25519_test.go index 0b4651e..2000d1d 100644 --- a/ed25519_test.go +++ b/ed25519_test.go @@ -15,7 +15,7 @@ import ( "strings" "testing" - "github.com/agl/ed25519/edwards25519" + "github.com/toktokey/ed25519/edwards25519" ) type zeroReader struct{} diff --git a/extra25519/extra25519.go b/extra25519/extra25519.go index b897ba5..16e60b8 100644 --- a/extra25519/extra25519.go +++ b/extra25519/extra25519.go @@ -7,7 +7,7 @@ package extra25519 import ( "crypto/sha512" - "github.com/agl/ed25519/edwards25519" + "github.com/toktokey/ed25519/edwards25519" ) // PrivateKeyToCurve25519 converts an ed25519 private key into a corresponding diff --git a/extra25519/extra25519_test.go b/extra25519/extra25519_test.go index 55be8ec..b8e4d60 100644 --- a/extra25519/extra25519_test.go +++ b/extra25519/extra25519_test.go @@ -9,7 +9,7 @@ import ( "crypto/rand" "testing" - "github.com/agl/ed25519" + "github.com/toktokey/ed25519" "golang.org/x/crypto/curve25519" )