ark-models-ext 0.5.2

Replacement models for BLS12, BN and BW6 of ark-ec
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(not(feature = "std"), no_std)]
// Temporary fix to make clippy happy with implementation of clone on copy types
// provided by "derivative" crate.
#![allow(clippy::non_canonical_clone_impl)]

pub use ark_ec::{
    scalar_mul, scalar_mul::*, twisted_edwards, twisted_edwards::*, AffineRepr, CurveGroup,
    PrimeGroup, VariableBaseMSM,
};
pub mod models;
pub mod transmute;
pub use models::*;