use std::{
fs::File,
io::Write,
path::{Path, PathBuf},
};
use crate::ffi::{build_plonk_bn254, prove_plonk_bn254, test_plonk_bn254, verify_plonk_bn254};
use crate::witness::GnarkWitness;
use num_bigint::BigUint;
use serde::{Deserialize, Serialize};
use sha2::Digest;
use sha2::Sha256;
use sp1_core::SP1_CIRCUIT_VERSION;
use sp1_recursion_compiler::{
constraints::Constraint,
ir::{Config, Witness},
};
#[derive(Debug, Clone)]
pub struct PlonkBn254Prover;
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PlonkBn254Proof {
pub public_inputs: [String; 2],
pub encoded_proof: String,
pub raw_proof: String,
pub plonk_vkey_hash: [u8; 32],
}
impl PlonkBn254Prover {
pub fn new() -> Self {
Self
}
pub fn get_vkey_hash(build_dir: &Path) -> [u8; 32] {
let vkey_path = build_dir.join("vk.bin");
let vk_bin_bytes = std::fs::read(vkey_path).unwrap();
Sha256::digest(vk_bin_bytes).into()
}
pub fn test<C: Config>(constraints: Vec<Constraint>, witness: Witness<C>) {
let serialized = serde_json::to_string(&constraints).unwrap();
let mut constraints_file = tempfile::NamedTempFile::new().unwrap();
constraints_file.write_all(serialized.as_bytes()).unwrap();
let mut witness_file = tempfile::NamedTempFile::new().unwrap();
let gnark_witness = GnarkWitness::new(witness);
let serialized = serde_json::to_string(&gnark_witness).unwrap();
witness_file.write_all(serialized.as_bytes()).unwrap();
test_plonk_bn254(
witness_file.path().to_str().unwrap(),
constraints_file.path().to_str().unwrap(),
);
}
pub fn build<C: Config>(constraints: Vec<Constraint>, witness: Witness<C>, build_dir: PathBuf) {
let serialized = serde_json::to_string(&constraints).unwrap();
let constraints_path = build_dir.join("constraints.json");
let mut file = File::create(constraints_path).unwrap();
file.write_all(serialized.as_bytes()).unwrap();
let witness_path = build_dir.join("witness.json");
let gnark_witness = GnarkWitness::new(witness);
let mut file = File::create(witness_path).unwrap();
let serialized = serde_json::to_string(&gnark_witness).unwrap();
file.write_all(serialized.as_bytes()).unwrap();
build_plonk_bn254(build_dir.to_str().unwrap());
let sp1_verifier_path = build_dir.join("SP1Verifier.sol");
let vkey_hash = Self::get_vkey_hash(&build_dir);
let sp1_verifier_str = include_str!("../assets/SP1Verifier.txt")
.replace("{SP1_CIRCUIT_VERSION}", SP1_CIRCUIT_VERSION)
.replace(
"{VERIFIER_HASH}",
format!("0x{}", hex::encode(vkey_hash)).as_str(),
);
let mut sp1_verifier_file = File::create(sp1_verifier_path).unwrap();
sp1_verifier_file
.write_all(sp1_verifier_str.as_bytes())
.unwrap();
}
pub fn prove<C: Config>(&self, witness: Witness<C>, build_dir: PathBuf) -> PlonkBn254Proof {
let mut witness_file = tempfile::NamedTempFile::new().unwrap();
let gnark_witness = GnarkWitness::new(witness);
let serialized = serde_json::to_string(&gnark_witness).unwrap();
witness_file.write_all(serialized.as_bytes()).unwrap();
let mut proof = prove_plonk_bn254(
build_dir.to_str().unwrap(),
witness_file.path().to_str().unwrap(),
);
proof.plonk_vkey_hash = Self::get_vkey_hash(&build_dir);
proof
}
pub fn verify(
&self,
proof: &PlonkBn254Proof,
vkey_hash: &BigUint,
committed_values_digest: &BigUint,
build_dir: &Path,
) {
if proof.plonk_vkey_hash != Self::get_vkey_hash(build_dir) {
panic!("Proof vkey hash does not match circuit vkey hash, it was generated with a different circuit.");
}
verify_plonk_bn254(
build_dir.to_str().unwrap(),
&proof.raw_proof,
&vkey_hash.to_string(),
&committed_values_digest.to_string(),
)
.expect("failed to verify proof")
}
}
impl Default for PlonkBn254Prover {
fn default() -> Self {
Self::new()
}
}