cnfy 0.2.1

Zero-dependency cryptographic primitives for Bitcoin — U256 arithmetic and secp256k1 curve operations
Documentation
1
2
3
4
5
6
7
8
9
//! Umbrella crate for the cnfy library suite.
//!
//! Re-exports inner crates without the `cnfy-` prefix:
//!
//! - `cnfy::uint` — 256-bit modular arithmetic
//! - `cnfy::secp256k1` — secp256k1 elliptic curve operations

pub use cnfy_uint as uint;
pub use cnfy_secp256k1 as secp256k1;