ark_ec/models/bw6/
g1.rs

1use crate::{
2    bw6::BW6Config,
3    short_weierstrass::{Affine, Projective},
4    AffineRepr, CurveGroup,
5};
6use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};
7use ark_std::vec::*;
8use educe::Educe;
9
10pub type G1Affine<P> = Affine<<P as BW6Config>::G1Config>;
11pub type G1Projective<P> = Projective<<P as BW6Config>::G1Config>;
12
13#[derive(Educe, CanonicalSerialize, CanonicalDeserialize)]
14#[educe(Copy, Clone, Debug, PartialEq, Eq)]
15pub struct G1Prepared<P: BW6Config>(pub G1Affine<P>);
16
17impl<P: BW6Config> From<G1Affine<P>> for G1Prepared<P> {
18    fn from(other: G1Affine<P>) -> Self {
19        G1Prepared(other)
20    }
21}
22
23impl<P: BW6Config> From<G1Projective<P>> for G1Prepared<P> {
24    fn from(q: G1Projective<P>) -> Self {
25        q.into_affine().into()
26    }
27}
28
29impl<'a, P: BW6Config> From<&'a G1Affine<P>> for G1Prepared<P> {
30    fn from(other: &'a G1Affine<P>) -> Self {
31        G1Prepared(*other)
32    }
33}
34
35impl<'a, P: BW6Config> From<&'a G1Projective<P>> for G1Prepared<P> {
36    fn from(q: &'a G1Projective<P>) -> Self {
37        q.into_affine().into()
38    }
39}
40
41impl<P: BW6Config> G1Prepared<P> {
42    pub fn is_zero(&self) -> bool {
43        self.0.infinity
44    }
45}
46
47impl<P: BW6Config> Default for G1Prepared<P> {
48    fn default() -> Self {
49        G1Prepared(G1Affine::<P>::generator())
50    }
51}