1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use crate::templates::{
bw6::BW6Parameters,
short_weierstrass::short_weierstrass_jacobian::{GroupAffine, GroupProjective},
};
use snarkvm_errors::serialization::SerializationError;
use snarkvm_models::curves::{pairing_engine::AffineCurve, Zero};
use snarkvm_utilities::{bytes::ToBytes, serialize::*};
use std::io::{Result as IoResult, Write};
pub type G1Affine<P> = GroupAffine<<P as BW6Parameters>::G1Parameters>;
pub type G1Projective<P> = GroupProjective<<P as BW6Parameters>::G1Parameters>;
#[derive(Derivative, CanonicalSerialize, CanonicalDeserialize)]
#[derivative(
Clone(bound = "P: BW6Parameters"),
Debug(bound = "P: BW6Parameters"),
PartialEq(bound = "P: BW6Parameters"),
Eq(bound = "P: BW6Parameters")
)]
pub struct G1Prepared<P: BW6Parameters>(pub G1Affine<P>);
impl<P: BW6Parameters> From<G1Affine<P>> for G1Prepared<P> {
fn from(other: G1Affine<P>) -> Self {
G1Prepared(other)
}
}
impl<P: BW6Parameters> G1Prepared<P> {
pub fn is_zero(&self) -> bool {
self.0.is_zero()
}
}
impl<P: BW6Parameters> Default for G1Prepared<P> {
fn default() -> Self {
G1Prepared(G1Affine::<P>::prime_subgroup_generator())
}
}
impl<P: BW6Parameters> ToBytes for G1Prepared<P> {
fn write<W: Write>(&self, writer: W) -> IoResult<()> {
self.0.write(writer)
}
}