zerocaf 0.2.0

A pure-Rust implementation of elliptic curve operations over the Doppio-curve
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(not(any(
    feature = "u64_backend"
)))]

// A backend feature must fair be chosen.
compile_error!(
    "no zerocaf backend cargo feature enabled! \
     please enable u64_backend"
);
pub mod field;
pub mod constants;
pub mod scalar;