pathfinder-crypto 0.20.2

Cryptographic primitives used by Pathfinder
Documentation
//! Pathfinder_crypto is a library for cryptographic primitives used by
//! Starknet.

/// Contains algebra such as finite fields and elliptic curves.
pub mod algebra;

/// Contains hash functions such as Pedersen and Poseidon.
pub mod hash;

/// Contains signature functions such as ECDSA.
pub mod signature;

pub use algebra::{
    AffinePoint,
    CurveOrderMontFelt,
    Felt,
    HexParseError,
    MontFelt,
    OverflowError,
    ProjectivePoint,
};