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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
use crate::arkworks::{pasta_fp::WasmPastaFp, pasta_fq::WasmPastaFq};
use mina_curves::pasta::{
curves::{
pallas::{G_GENERATOR_X as GeneratorPallasX, G_GENERATOR_Y as GeneratorPallasY},
vesta::{G_GENERATOR_X as GeneratorVestaX, G_GENERATOR_Y as GeneratorVestaY},
},
Pallas as AffinePallas, Vesta as AffineVesta,
};
use wasm_bindgen::prelude::*;
//
// handy types
//
#[wasm_bindgen]
#[derive(Clone, Copy, Debug)]
pub struct WasmGPallas {
pub x: WasmPastaFp,
pub y: WasmPastaFp,
pub infinity: bool,
}
#[wasm_bindgen]
#[derive(Clone, Copy, Debug)]
pub struct WasmGVesta {
pub x: WasmPastaFq,
pub y: WasmPastaFq,
pub infinity: bool,
}
// Conversions from/to AffineVesta
impl From<AffineVesta> for WasmGVesta {
fn from(point: AffineVesta) -> Self {
WasmGVesta {
x: point.x.into(),
y: point.y.into(),
infinity: point.infinity,
}
}
}
impl From<&AffineVesta> for WasmGVesta {
fn from(point: &AffineVesta) -> Self {
WasmGVesta {
x: point.x.into(),
y: point.y.into(),
infinity: point.infinity,
}
}
}
impl From<WasmGVesta> for AffineVesta {
fn from(point: WasmGVesta) -> Self {
AffineVesta {
x: point.x.into(),
y: point.y.into(),
infinity: point.infinity,
}
}
}
impl From<&WasmGVesta> for AffineVesta {
fn from(point: &WasmGVesta) -> Self {
AffineVesta {
x: point.x.into(),
y: point.y.into(),
infinity: point.infinity,
}
}
}
// Conversion from/to AffinePallas
impl From<AffinePallas> for WasmGPallas {
fn from(point: AffinePallas) -> Self {
WasmGPallas {
x: point.x.into(),
y: point.y.into(),
infinity: point.infinity,
}
}
}
impl From<&AffinePallas> for WasmGPallas {
fn from(point: &AffinePallas) -> Self {
WasmGPallas {
x: point.x.into(),
y: point.y.into(),
infinity: point.infinity,
}
}
}
impl From<WasmGPallas> for AffinePallas {
fn from(point: WasmGPallas) -> Self {
AffinePallas {
x: point.x.into(),
y: point.y.into(),
infinity: point.infinity,
}
}
}
impl From<&WasmGPallas> for AffinePallas {
fn from(point: &WasmGPallas) -> Self {
AffinePallas {
x: point.x.into(),
y: point.y.into(),
infinity: point.infinity,
}
}
}
#[wasm_bindgen]
pub fn caml_pallas_affine_one() -> WasmGPallas {
WasmGPallas {
x: WasmPastaFp::from(GeneratorPallasX),
y: WasmPastaFp::from(GeneratorPallasY),
infinity: false,
}
}
#[wasm_bindgen]
pub fn caml_vesta_affine_one() -> WasmGVesta {
WasmGVesta {
x: WasmPastaFq::from(GeneratorVestaX),
y: WasmPastaFq::from(GeneratorVestaY),
infinity: false,
}
}
/*
#[wasm_bindgen]
pub fn caml_pasta_pallas_one() -> WasmPallasGProjective {
ProjectivePallas::prime_subgroup_generator().into()
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_add(
x: &WasmPallasGProjective,
y: &WasmPallasGProjective,
) -> WasmPallasGProjective {
(**x + **y).into()
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_sub(
x: &WasmPallasGProjective,
y: &WasmPallasGProjective,
) -> WasmPallasGProjective {
(**x - **y).into()
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_negate(x: &WasmPallasGProjective) -> WasmPallasGProjective {
(-(**x)).into()
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_double(x: &WasmPallasGProjective) -> WasmPallasGProjective {
(x.double()).into()
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_scale(x: &WasmPallasGProjective, y: WasmPastaFq) -> WasmPallasGProjective {
(x.mul(y.0)).into()
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_random() -> WasmPallasGProjective {
let rng = &mut rand_core::OsRng;
WasmPallasGProjective(UniformRand::rand(rng))
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_rng(i: u32) -> WasmPallasGProjective {
let i: u64 = i.into();
let mut rng: StdRng = rand::SeedableRng::seed_from_u64(i);
WasmPallasGProjective(UniformRand::rand(&mut rng))
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_endo_base() -> WasmPastaFp {
let (endo_q, _endo_r) = poly_commitment::srs::endos::<GAffine>();
WasmPastaFp(endo_q)
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_endo_scalar() -> WasmPastaFq {
let (_endo_q, endo_r) = poly_commitment::srs::endos::<GAffine>();
WasmPastaFq(endo_r)
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_to_affine(x: &WasmPallasGProjective) -> WasmPallasGAffine {
Into::<&GProjective>::into(x).into_affine().into()
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_of_affine(x: &WasmPallasGAffine) -> WasmPallasGProjective {
Into::<GAffine>::into(x).into_projective().into()
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_of_affine_coordinates(x: WasmPastaFp, y: WasmPastaFp) -> WasmPallasGProjective {
GProjective::new_unchecked(x.0, y.0, Fp::one()).into()
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_affine_deep_copy(x: &WasmPallasGAffine) -> WasmPallasGAffine {
x.clone()
}
#[wasm_bindgen]
pub fn caml_pasta_pallas_affine_one() -> WasmPallasGAffine {
GAffine::prime_subgroup_generator().into()
}
*/