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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
use ark_ec::{AffineRepr, CurveGroup, Group};
use ark_ff::UniformRand;
use paste::paste;
use rand::rngs::StdRng;

use wasm_bindgen::prelude::*;

macro_rules! impl_projective {
    ($name: ident,
     $GroupProjective: ty,
     $CamlG: ty,
     $CamlScalarField: ty,
     $BaseField: ty,
     $CamlBaseField: ty,
     $Projective: ty) => {

        paste! {
            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _one>]() -> $GroupProjective {
                $Projective::generator().into()
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _add>](
                x: &$GroupProjective,
                y: &$GroupProjective,
            ) -> $GroupProjective {
                x.as_ref() + y.as_ref()
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _sub>](
                x: &$GroupProjective,
                y: &$GroupProjective,
            ) -> $GroupProjective {
                x.as_ref() - y.as_ref()
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _negate>](
                x: &$GroupProjective,
            ) -> $GroupProjective {
                -(*x.as_ref())
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _double>](
                x: &$GroupProjective,
            ) -> $GroupProjective {
                x.as_ref().double().into()
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _scale>](
                x: &$GroupProjective,
                y: $CamlScalarField,
            ) -> $GroupProjective {
                let y: ark_ff::BigInteger256 = y.0.into();
                x.as_ref().mul_bigint(&y).into()
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _random>]() -> $GroupProjective {
                let rng = &mut rand::rngs::OsRng;
                let proj: $Projective = UniformRand::rand(rng);
                proj.into()
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _rng>](i: u32) -> $GroupProjective {
                // We only care about entropy here, so we force a conversion i32 -> u32.
                let i: u64 = (i as u32).into();
                let mut rng: StdRng = rand::SeedableRng::seed_from_u64(i);
                let proj: $Projective = UniformRand::rand(&mut rng);
                proj.into()
            }

            // improper_ctypes_definitions is allowed here because the CamlBase/ScalarField struct
            // already has #[repr(C)] in its definition
            #[allow(improper_ctypes_definitions)]
            #[wasm_bindgen]
            pub extern "C" fn [<caml_ $name:snake _endo_base>]() -> $CamlBaseField {
                let (endo_q, _endo_r) = poly_commitment::ipa::endos::<GAffine>();
                endo_q.into()
            }

            // improper_ctypes_definitions is allowed here because the CamlBase/ScalarField struct
            // already has #[repr(C)] in its definition
            #[allow(improper_ctypes_definitions)]
            #[wasm_bindgen]
            pub extern "C" fn [<caml_ $name:snake _endo_scalar>]() -> $CamlScalarField {
                let (_endo_q, endo_r) = poly_commitment::ipa::endos::<GAffine>();
                endo_r.into()
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _to_affine>](
                x: &$GroupProjective
                ) -> $CamlG {
                x.as_ref().into_affine().into()
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _of_affine>](x: $CamlG) -> $GroupProjective {
                Into::<GAffine>::into(x).into_group().into()
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _of_affine_coordinates>](x: $CamlBaseField, y: $CamlBaseField) -> $GroupProjective {
                let res = $Projective::new_unchecked(x.into(), y.into(), <$BaseField as ark_ff::One>::one());
                res.into()
            }

            #[wasm_bindgen]
            pub fn [<caml_ $name:snake _affine_deep_copy>](x: $CamlG) -> $CamlG {
                x
            }
        }
    }
}

pub mod pallas {
    use super::*;
    use crate::arkworks::{
        group_affine::WasmGPallas, group_projective::WasmPallasGProjective, pasta_fp::WasmPastaFp,
        pasta_fq::WasmPastaFq,
    };
    use mina_curves::pasta::{Fp, Pallas as GAffine, ProjectivePallas};

    impl_projective!(
        pallas,
        WasmPallasGProjective,
        WasmGPallas,
        WasmPastaFq,
        Fp,
        WasmPastaFp,
        ProjectivePallas
    );
}

pub mod vesta {
    use super::*;
    use crate::arkworks::{
        group_affine::WasmGVesta, group_projective::WasmVestaGProjective, pasta_fp::WasmPastaFp,
        pasta_fq::WasmPastaFq,
    };
    use mina_curves::pasta::{Fq, ProjectiveVesta, Vesta as GAffine};

    impl_projective!(
        vesta,
        WasmVestaGProjective,
        WasmGVesta,
        WasmPastaFp,
        Fq,
        WasmPastaFq,
        ProjectiveVesta
    );
}