Skip to content

Commit

Permalink
Revert "Use the rust crypto lib instead of ecies lib."
Browse files Browse the repository at this point in the history
The rust crypto lib cannot be used in the same go binary as the lightspark-crypto-uniffi lib due to duplicate symbols at linking time. This results in the demo vasp breaking when trying to use both lightspark-sdk and this uma sdk.

This reverts commit cb9d57b.
  • Loading branch information
jklein24 committed Nov 5, 2023
1 parent 93c5d43 commit 8a0e490
Show file tree
Hide file tree
Showing 4 changed files with 1,398 additions and 11 deletions.
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ go 1.21

require (
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0
github.com/ecies/go/v2 v2.0.7
github.com/stretchr/testify v1.8.4
github.com/uma-universal-money-address/uma-crypto-uniffi/uma-crypto-go v0.0.0-20231101191600-2e4bd3b7e318
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/ethereum/go-ethereum v1.12.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
golang.org/x/crypto v0.11.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 8a0e490

Please sign in to comment.