#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;
use lazy_static::lazy_static;
lazy_static! {
pub static ref PLONK_VK_BYTES: &'static [u8] = include_bytes!("../bn254-vk/plonk_vk.bin");
}
lazy_static! {
pub static ref GROTH16_VK_BYTES: &'static [u8] = include_bytes!("../bn254-vk/groth16_vk.bin");
}
mod constants;
mod converter;
mod error;
mod utils;
pub use utils::*;
pub use groth16::error::Groth16Error;
pub use groth16::Groth16Verifier;
mod groth16;
pub use plonk::error::PlonkError;
pub use plonk::PlonkVerifier;
mod plonk;
#[cfg(test)]
mod tests;