pub trait G1Api {
    fn add_points(bytes: &[u8]) -> Result<Vec<u8>, ApiError>;
fn mul_point(bytes: &[u8]) -> Result<Vec<u8>, ApiError>;
fn multiexp(bytes: &[u8]) -> Result<Vec<u8>, ApiError>; }

Required methods

Implementors