ark_secp256k1_ext/lib.rs
1//! This library implements the secp256k1 curve.
2//! Source: <https://en.bitcoin.it/wiki/Secp256k1>
3//!
4//! Curve information:
5//! * Base field: q =
6//! 115792089237316195423570985008687907853269984665640564039457584007908834671663
7//! * Scalar field: r =
8//! 115792089237316195423570985008687907852837564279074904382605163141518161494337
9//! * Curve equation: y^2 = x^3 + 7
10
11#![cfg_attr(not(feature = "std"), no_std)]
12
13pub mod curves;
14
15pub use ark_secp256k1::{fq, fq::*, fr, fr::*};
16pub use curves::*;