Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
glide: move to upstream agl/ed25519
Browse files Browse the repository at this point in the history
set to the version decred/ed25519 had been synced with.
  • Loading branch information
dajohi authored and davecgh committed Jun 1, 2017
1 parent 9987b02 commit a3083e1
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion dcrec/edwards/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package edwards
import (
"math/big"

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

var (
Expand Down
2 changes: 1 addition & 1 deletion dcrec/edwards/curve.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"crypto/elliptic"
"math/big"

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

// TwistedEdwardsCurve extended an elliptical curve set of
Expand Down
5 changes: 2 additions & 3 deletions dcrec/edwards/ecdsa.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ import (
"hash"
"io"
"math/big"

"crypto/sha512"

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

// BIG CAVEAT
Expand Down
2 changes: 1 addition & 1 deletion dcrec/edwards/primitives.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"math/big"

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

// Some notes on primitives in Ed25519:
Expand Down
2 changes: 1 addition & 1 deletion dcrec/edwards/privkey.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"fmt"
"math/big"

"github.com/decred/ed25519"
"github.com/agl/ed25519"
)

// These constants define the lengths of serialized private keys.
Expand Down
12 changes: 6 additions & 6 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions glide.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
package: github.com/decred/dcrd
import:
- package: github.com/agl/ed25519
version: 278e1ec8e8a6e017cd07577924d6766039146ced
subpackages:
- edwards25519
- package: github.com/btcsuite/btclog
- package: github.com/btcsuite/go-flags
- package: github.com/btcsuite/go-socks
Expand Down Expand Up @@ -30,9 +34,6 @@ import:
- package: github.com/decred/dcrutil
subpackages:
- bloom
- package: github.com/decred/ed25519
subpackages:
- edwards25519
- package: golang.org/x/crypto
subpackages:
- ripemd160
Expand Down

0 comments on commit a3083e1

Please sign in to comment.