Migrate from secp256k1 to secp256k1prp. #75
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
secp256k1
is a python wrapper around asecp256k1
C library, which speeds up and provides various crypto functions to private key generation.secp256k1prp
is a fork, which wraps a similar C library,secp256k1-zkp
, from bitshares-core, which adds support for Pederesen commitments / Range Proofs (hence, "prp").As of time of this writing
secp256k1prp
is also more maintained thansecp256k1
, with pip wheel files provided for all major python platforms (wheel files contain the pre-compiled C library, for a specific platform, so the end-user doesn't have to compile it himself), see here: https://pypi.org/project/secp256k1prp/#filesThis PR simply replaces
secp256k1
withsecp256k1prp
, but it could possibly look for either.