Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mimblewimble/rust-secp256k1-zkp
ZKP fork for rust-secp256k1, adds wrappers for range proofs, pedersen commitments, etc
https://github.com/mimblewimble/rust-secp256k1-zkp
Last synced: 2 days ago
JSON representation
ZKP fork for rust-secp256k1, adds wrappers for range proofs, pedersen commitments, etc
- Host: GitHub
- URL: https://github.com/mimblewimble/rust-secp256k1-zkp
- Owner: mimblewimble
- License: cc0-1.0
- Created: 2017-09-13T18:22:14.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-13T10:55:53.000Z (6 months ago)
- Last Synced: 2024-10-08T19:44:01.714Z (27 days ago)
- Language: Rust
- Size: 504 KB
- Stars: 57
- Watchers: 16
- Forks: 51
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-cryptography-rust - rust-secp256k1-zkp - secp256k1, adds wrappers for range proofs, pedersen commitments, etc. (Cryptography / Zero Knowledge Proofs)
README
[![Build Status](https://dev.azure.com/mimblewimble/rust-secp256k1-zkp/_apis/build/status/mimblewimble.rust-secp256k1-zkp?branchName=master)](https://dev.azure.com/mimblewimble/rust-secp256k1-zkp/_build/latest?definitionId=4&branchName=master)
### rust-secp256k1
`rust-secp256k1` is a wrapper around [libsecp256k1](https://github.com/bitcoin/secp256k1),
a C library by Peter Wuille for producing ECDSA signatures using the SECG curve
`secp256k1`. This library
* exposes type-safe Rust bindings for all `libsecp256k1` functions
* implements key generation
* implements deterministic nonce generation via RFC6979
* implements many unit tests, adding to those already present in `libsecp256k1`
* makes no allocations (except in unit tests) for efficiency and use in freestanding implementations[Full documentation](https://www.wpsoftware.net/rustdoc/secp256k1/)