Skip to content

Commit

Permalink
Made temp fork for migration and init go modules
Browse files Browse the repository at this point in the history
  • Loading branch information
sheb-gregor committed Mar 23, 2020
1 parent 3f023ad commit 5c2704f
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
4 changes: 2 additions & 2 deletions ed25519.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"crypto/subtle"
"io"

"github.com/cbluth/ed25519/edwards25519"
// "github.com/agl/ed25519/edwards25519"
// "github.com/cbluth/ed25519/edwards25519"
"github.com/agl/ed25519/edwards25519"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions ed25519_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"strings"
"testing"

"github.com/cbluth/ed25519/edwards25519"
// "github.com/agl/ed25519/edwards25519"
// "github.com/cbluth/ed25519/edwards25519"
"github.com/agl/ed25519/edwards25519"
)

type zeroReader struct{}
Expand Down
4 changes: 2 additions & 2 deletions extra25519/extra25519.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ package extra25519
import (
"crypto/sha512"

"github.com/cbluth/ed25519/edwards25519"
// "github.com/agl/ed25519/edwards25519"
// "github.com/cbluth/ed25519/edwards25519"
"github.com/agl/ed25519/edwards25519"
)

// PrivateKeyToCurve25519 converts an ed25519 private key into a corresponding
Expand Down
4 changes: 2 additions & 2 deletions extra25519/extra25519_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"crypto/rand"
"testing"

"github.com/cbluth/ed25519"
// "github.com/agl/ed25519"
// "github.com/cbluth/ed25519"
"github.com/agl/ed25519"
"golang.org/x/crypto/curve25519"
)

Expand Down
5 changes: 5 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module github.com/agl/ed25519

go 1.13

require golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59
7 changes: 7 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59 h1:3zb4D3T4G8jdExgVU/95+vQXfpEPiMdCaZgmGVxjNHM=
golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=

0 comments on commit 5c2704f

Please sign in to comment.