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
//! The Marlin_plonk_stubs crate exports some functionalities
//! and structures from the following the Rust crates to OCaml:
//!
//! * [Marlin](https://github.com/o1-labs/marlin),
//! a PLONK implementation.
//! * [Arkworks](http://arkworks.rs/),
//! a math library that Marlin builds on top of.
//!
use wasm_bindgen::prelude::*;
mod wasm_flat_vector;
mod wasm_vector;
#[wasm_bindgen]
extern "C" {
pub fn alert(s: &str);
}
#[wasm_bindgen]
pub fn greet(name: &str) {
alert(&format!("Hello, {name}!"));
}
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(js_namespace = console)]
fn log(s: &str);
}
// produces a warning, but can be useful
// macro_rules! console_log {
// ($($t:tt)*) => (crate::log(&format_args!($($t)*).to_string()))
// }
#[wasm_bindgen]
pub fn console_log(s: &str) {
log(s);
}
#[wasm_bindgen]
pub fn create_zero_u32_ptr() -> *mut u32 {
Box::into_raw(std::boxed::Box::new(0))
}
#[wasm_bindgen]
pub fn free_u32_ptr(ptr: *mut u32) {
let _drop_me = unsafe { std::boxed::Box::from_raw(ptr) };
}
#[wasm_bindgen]
pub fn set_u32_ptr(ptr: *mut u32, arg: u32) {
// The rust docs explicitly forbid using this for cross-thread syncronization. Oh well, we
// don't have anything better. As long as it works in practice, we haven't upset the undefined
// behavior dragons.
unsafe {
core::ptr::write_volatile(ptr, arg);
}
}
#[allow(unreachable_code)]
#[wasm_bindgen]
pub fn wait_until_non_zero(ptr: *const u32) -> u32 {
// The rust docs explicitly forbid using this for cross-thread syncronization. Oh well, we
// don't have anything better. As long as it works in practice, we haven't upset the undefined
// behavior dragons.
loop {
let contents = unsafe { core::ptr::read_volatile(ptr) };
if contents != 0 {
return contents;
}
}
unreachable!();
}
pub mod rayon;
/// Arkworks types
pub mod arkworks;
/// Utils
pub mod urs_utils; // TODO: move this logic to proof-systems
/// Vectors
pub mod gate_vector;
pub mod poly_comm;
/// Curves
pub mod projective;
/// SRS
pub mod srs;
/// Indexes
pub mod pasta_fp_plonk_index;
pub mod pasta_fq_plonk_index;
/// Verifier indexes/keys
pub mod plonk_verifier_index;
/// Oracles
pub mod oracles;
/// Proofs
pub mod plonk_proof;
/// Poseidon
pub mod poseidon;
// exposes circuit for inspection
pub mod circuit;
pub mod wasm_ocaml_serde;