decaf377/ark_curve/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pub mod bls12_377;
mod constants;
mod edwards;

mod element;
mod elligator;
mod encoding;
mod invsqrt;
mod ops;
pub mod rand;
pub mod serialize;

pub use constants::ZETA;
pub(crate) use edwards::{Decaf377EdwardsConfig, EdwardsProjective};
pub use element::{AffinePoint, Element};
pub use encoding::Encoding;

mod on_curve;

#[cfg(feature = "r1cs")]
pub mod r1cs;

pub use bls12_377::Bls12_377;