pub struct G2Prepared<P: MNT4Config> {
pub x: Fp2<P::Fp2Config>,
pub y: Fp2<P::Fp2Config>,
pub x_over_twist: Fp2<P::Fp2Config>,
pub y_over_twist: Fp2<P::Fp2Config>,
pub double_coefficients: Vec<AteDoubleCoefficients<P>>,
pub addition_coefficients: Vec<AteAdditionCoefficients<P>>,
}
Fields§
§x: Fp2<P::Fp2Config>
§y: Fp2<P::Fp2Config>
§x_over_twist: Fp2<P::Fp2Config>
§y_over_twist: Fp2<P::Fp2Config>
§double_coefficients: Vec<AteDoubleCoefficients<P>>
§addition_coefficients: Vec<AteAdditionCoefficients<P>>
Trait Implementations§
source§impl<P: MNT4Config> CanonicalDeserialize for G2Prepared<P>
impl<P: MNT4Config> CanonicalDeserialize for G2Prepared<P>
source§fn deserialize_with_mode<R: Read>(
reader: R,
compress: Compress,
validate: Validate
) -> Result<Self, SerializationError>
fn deserialize_with_mode<R: Read>( reader: R, compress: Compress, validate: Validate ) -> Result<Self, SerializationError>
The general deserialize method that takes in customization flags.
fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>where R: Read,
fn deserialize_compressed_unchecked<R>( reader: R ) -> Result<Self, SerializationError>where R: Read,
fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>where R: Read,
fn deserialize_uncompressed_unchecked<R>( reader: R ) -> Result<Self, SerializationError>where R: Read,
source§impl<P: MNT4Config> CanonicalSerialize for G2Prepared<P>
impl<P: MNT4Config> CanonicalSerialize for G2Prepared<P>
source§fn serialize_with_mode<W: Write>(
&self,
writer: W,
compress: Compress
) -> Result<(), SerializationError>
fn serialize_with_mode<W: Write>( &self, writer: W, compress: Compress ) -> Result<(), SerializationError>
The general serialize method that takes in customization flags.
fn serialized_size(&self, compress: Compress) -> usize
fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>where W: Write,
fn compressed_size(&self) -> usize
fn serialize_uncompressed<W>(&self, writer: W) -> Result<(), SerializationError>where W: Write,
fn uncompressed_size(&self) -> usize
source§impl<P> Clone for G2Prepared<P>where
P: MNT4Config,
impl<P> Clone for G2Prepared<P>where P: MNT4Config,
source§impl<P> Debug for G2Prepared<P>where
P: MNT4Config,
impl<P> Debug for G2Prepared<P>where P: MNT4Config,
source§impl<P: MNT4Config> Default for G2Prepared<P>
impl<P: MNT4Config> Default for G2Prepared<P>
source§impl<'a, P: MNT4Config> From<&'a Affine<<P as MNT4Config>::G2Config>> for G2Prepared<P>
impl<'a, P: MNT4Config> From<&'a Affine<<P as MNT4Config>::G2Config>> for G2Prepared<P>
source§impl<'a, P: MNT4Config> From<&'a Projective<<P as MNT4Config>::G2Config>> for G2Prepared<P>
impl<'a, P: MNT4Config> From<&'a Projective<<P as MNT4Config>::G2Config>> for G2Prepared<P>
source§fn from(g2: &'a G2Projective<P>) -> Self
fn from(g2: &'a G2Projective<P>) -> Self
Converts to this type from the input type.
source§impl<P: MNT4Config> From<Affine<<P as MNT4Config>::G2Config>> for G2Prepared<P>
impl<P: MNT4Config> From<Affine<<P as MNT4Config>::G2Config>> for G2Prepared<P>
source§impl<P: MNT4Config> From<Projective<<P as MNT4Config>::G2Config>> for G2Prepared<P>
impl<P: MNT4Config> From<Projective<<P as MNT4Config>::G2Config>> for G2Prepared<P>
source§fn from(g2: G2Projective<P>) -> Self
fn from(g2: G2Projective<P>) -> Self
Converts to this type from the input type.