Skip to content

Commit

Permalink
Merge pull request #140 from oasisprotocol/yawning/feature/fix-ed25519
Browse files Browse the repository at this point in the history
crypto: Fix the rust and go ideas of Ed25519 to match reality
  • Loading branch information
Yawning authored May 18, 2021
2 parents ab02f6c + adb9529 commit 0a5add6
Show file tree
Hide file tree
Showing 7 changed files with 442 additions and 118 deletions.
36 changes: 20 additions & 16 deletions Cargo.lock

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

10 changes: 7 additions & 3 deletions client-sdk/go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ go 1.16
// Should be synced with Oasis Core as replace directives are not propagated.
replace (
github.com/tendermint/tendermint => github.com/oasisprotocol/tendermint v0.34.9-oasis2
golang.org/x/crypto/curve25519 => github.com/oasisprotocol/ed25519/extra/x25519 v0.0.0-20210127160119-f7017427c1ea
golang.org/x/crypto/ed25519 => github.com/oasisprotocol/ed25519 v0.0.0-20210127160119-f7017427c1ea
golang.org/x/crypto/curve25519 => github.com/oasisprotocol/curve25519-voi/primitives/x25519 v0.0.0-20210505121811-294cf0fbfb43
golang.org/x/crypto/ed25519 => github.com/oasisprotocol/curve25519-voi/primitives/ed25519 v0.0.0-20210505121811-294cf0fbfb43
)

require (
github.com/btcsuite/btcd v0.21.0-beta
github.com/oasisprotocol/oasis-core/go v0.2101.1-0.20210504072550-da25d939a3d4
github.com/fxamacker/cbor/v2 v2.2.1-0.20210517032302-bdd38cd1c8c0 // indirect
github.com/oasisprotocol/oasis-core/go v0.2101.1-0.20210517160830-c287752b61b7
github.com/prometheus/common v0.24.0 // indirect
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.0.0-20210510120150-4163338589ed // indirect
golang.org/x/sys v0.0.0-20210514084401-e8d321eab015 // indirect
google.golang.org/grpc v1.37.0
)
Loading

0 comments on commit 0a5add6

Please sign in to comment.