Skip to content

Commit 2a9081b

Browse files
committedMar 15, 2020
Fix Imports
1 parent 0de2e15 commit 2a9081b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎ed25519.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"io"
2525
"strconv"
2626

27-
"github.com/diagprov/golang-ed25519/edwards25519"
27+
"github.com/teserakt-io/golang-ed25519/edwards25519"
2828
)
2929

3030
const (

‎ed25519_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import (
1515
"strings"
1616
"testing"
1717

18-
"github.com/diagprov/golang-ed25519"
19-
"github.com/diagprov/golang-ed25519/edwards25519"
18+
"github.com/teserakt-io/golang-ed25519"
19+
"github.com/teserakt-io/golang-ed25519/edwards25519"
2020
)
2121

2222
type zeroReader struct{}

‎extra25519/extra25519.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package extra25519
77
import (
88
"crypto/sha512"
99

10-
"github.com/diagprov/golang-ed25519/edwards25519"
10+
"github.com/teserakt-io/golang-ed25519/edwards25519"
1111
)
1212

1313
// PrivateKeyToCurve25519 converts an ed25519 private key into a corresponding

‎extra25519/extra25519_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"crypto/rand"
1010
"testing"
1111

12-
"github.com/diagprov/golang-ed25519"
12+
"github.com/teserakt-io/golang-ed25519"
1313
"golang.org/x/crypto/curve25519"
1414
)
1515

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/diagprov/golang-ed25519
1+
module github.com/teserakt-io/golang-ed25519
22

33
go 1.13
44

0 commit comments

Comments
 (0)
Please sign in to comment.