|
|
@@ -0,0 +1,168 @@
|
|
|
+/* This file is part of DarkFi (https://dark.fi)
|
|
|
+ *
|
|
|
+ * Copyright (C) 2020-2023 Dyne.org foundation
|
|
|
+ *
|
|
|
+ * This program is free software: you can redistribute it and/or modify
|
|
|
+ * it under the terms of the GNU Affero General Public License as
|
|
|
+ * published by the Free Software Foundation, either version 3 of the
|
|
|
+ * License, or (at your option) any later version.
|
|
|
+ *
|
|
|
+ * This program is distributed in the hope that it will be useful,
|
|
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
+ * GNU Affero General Public License for more details.
|
|
|
+ *
|
|
|
+ * You should have received a copy of the GNU Affero General Public License
|
|
|
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
+ */
|
|
|
+use std::io::Cursor;
|
|
|
+
|
|
|
+use darkfi_sdk::{
|
|
|
+ crypto::{pedersen::pedersen_commitment_u64, util::mod_r_p, MerkleNode, PublicKey, SecretKey},
|
|
|
+ incrementalmerkletree::{bridgetree::BridgeTree, Tree},
|
|
|
+};
|
|
|
+use halo2_gadgets::poseidon::{
|
|
|
+ primitives as poseidon,
|
|
|
+ primitives::{ConstantLength, P128Pow5T3},
|
|
|
+};
|
|
|
+use halo2_proofs::{
|
|
|
+ arithmetic::{CurveAffine, Field},
|
|
|
+ circuit::Value,
|
|
|
+ pasta::{group::Curve, pallas},
|
|
|
+};
|
|
|
+use rand::rngs::OsRng;
|
|
|
+
|
|
|
+use darkfi::{
|
|
|
+ zk::{
|
|
|
+ proof::{ProvingKey, VerifyingKey},
|
|
|
+ vm::ZkCircuit,
|
|
|
+ vm_stack::{empty_witnesses, Witness},
|
|
|
+ Proof,
|
|
|
+ },
|
|
|
+ zkas::ZkBinary,
|
|
|
+ Result,
|
|
|
+};
|
|
|
+
|
|
|
+#[test]
|
|
|
+fn zkvm_opcodes() -> Result<()> {
|
|
|
+ let bincode = include_bytes!("../proof/opcodes.zk.bin");
|
|
|
+ let zkbin = ZkBinary::decode(bincode)?;
|
|
|
+
|
|
|
+ let verifier_witnesses = empty_witnesses(&zkbin);
|
|
|
+
|
|
|
+ println!("Building vk1");
|
|
|
+ let circuit = ZkCircuit::new(verifier_witnesses.clone(), zkbin.clone());
|
|
|
+ let vk1 = VerifyingKey::build(13, &circuit);
|
|
|
+
|
|
|
+ println!("Building vk2");
|
|
|
+ let circuit = ZkCircuit::new(verifier_witnesses.clone(), zkbin.clone());
|
|
|
+ let vk2 = VerifyingKey::build(13, &circuit);
|
|
|
+
|
|
|
+ let mut buf1 = vec![];
|
|
|
+ let mut buf2 = vec![];
|
|
|
+
|
|
|
+ println!("Writing vk1");
|
|
|
+ vk1.write(&mut buf1)?;
|
|
|
+
|
|
|
+ println!("Writing vk2");
|
|
|
+ vk2.write(&mut buf2)?;
|
|
|
+
|
|
|
+ println!("{} kB", buf1.len() / 1024);
|
|
|
+ assert_eq!(buf1, buf2);
|
|
|
+
|
|
|
+ println!("Reading vk3");
|
|
|
+ let mut buf1_c = Cursor::new(buf1);
|
|
|
+ let vk3 = VerifyingKey::read::<Cursor<Vec<u8>>, ZkCircuit>(&mut buf1_c)?;
|
|
|
+
|
|
|
+ println!("Reading vk4");
|
|
|
+ let mut buf2_c = Cursor::new(buf2);
|
|
|
+ let vk4 = VerifyingKey::read::<Cursor<Vec<u8>>, ZkCircuit>(&mut buf2_c)?;
|
|
|
+
|
|
|
+ // Now let's see if we can verify a proof with all four keys.
|
|
|
+ println!("Creating pk");
|
|
|
+ let circuit = ZkCircuit::new(verifier_witnesses.clone(), zkbin.clone());
|
|
|
+ let pk = ProvingKey::build(13, &circuit);
|
|
|
+
|
|
|
+ let value = 666_u64;
|
|
|
+ let value_blind = pallas::Scalar::random(&mut OsRng);
|
|
|
+ let blind = pallas::Base::random(&mut OsRng);
|
|
|
+ let secret = pallas::Base::random(&mut OsRng);
|
|
|
+ let a = pallas::Base::from(42);
|
|
|
+ let b = pallas::Base::from(69);
|
|
|
+
|
|
|
+ let mut tree = BridgeTree::<MerkleNode, 32>::new(100);
|
|
|
+ let c0 = pallas::Base::random(&mut OsRng);
|
|
|
+ let c1 = pallas::Base::random(&mut OsRng);
|
|
|
+ let c3 = pallas::Base::random(&mut OsRng);
|
|
|
+ let c2 = {
|
|
|
+ let messages = [pallas::Base::one(), blind];
|
|
|
+ poseidon::Hash::<_, P128Pow5T3, ConstantLength<2>, 3, 2>::init().hash(messages)
|
|
|
+ };
|
|
|
+
|
|
|
+ tree.append(&MerkleNode::from(c0));
|
|
|
+ tree.witness();
|
|
|
+ tree.append(&MerkleNode::from(c1));
|
|
|
+ tree.append(&MerkleNode::from(c2));
|
|
|
+ let leaf_pos = tree.witness().unwrap();
|
|
|
+ tree.append(&MerkleNode::from(c3));
|
|
|
+ tree.witness();
|
|
|
+
|
|
|
+ let root = tree.root(0).unwrap();
|
|
|
+ let merkle_path = tree.authentication_path(leaf_pos, &root).unwrap();
|
|
|
+ let leaf_pos: u64 = leaf_pos.into();
|
|
|
+
|
|
|
+ let ephem_secret = SecretKey::random(&mut OsRng);
|
|
|
+ let pubkey = PublicKey::from_secret(ephem_secret).inner();
|
|
|
+ let (ephem_x, ephem_y) = PublicKey::from(pubkey * mod_r_p(ephem_secret.inner())).xy();
|
|
|
+ let prover_witnesses = vec![
|
|
|
+ Witness::Base(Value::known(pallas::Base::from(value))),
|
|
|
+ Witness::Scalar(Value::known(value_blind)),
|
|
|
+ Witness::Base(Value::known(blind)),
|
|
|
+ Witness::Base(Value::known(a)),
|
|
|
+ Witness::Base(Value::known(b)),
|
|
|
+ Witness::Base(Value::known(secret)),
|
|
|
+ Witness::EcNiPoint(Value::known(pubkey)),
|
|
|
+ Witness::Base(Value::known(ephem_secret.inner())),
|
|
|
+ Witness::Uint32(Value::known(leaf_pos.try_into().unwrap())),
|
|
|
+ Witness::MerklePath(Value::known(merkle_path.try_into().unwrap())),
|
|
|
+ ];
|
|
|
+
|
|
|
+ let value_commit = pedersen_commitment_u64(value, value_blind);
|
|
|
+ let value_coords = value_commit.to_affine().coordinates().unwrap();
|
|
|
+
|
|
|
+ let d_m = [pallas::Base::one(), blind, *value_coords.x(), *value_coords.y()];
|
|
|
+ let d = poseidon::Hash::<_, P128Pow5T3, ConstantLength<4>, 3, 2>::init().hash(d_m);
|
|
|
+
|
|
|
+ let public = PublicKey::from_secret(SecretKey::from(secret));
|
|
|
+ let (pub_x, pub_y) = public.xy();
|
|
|
+
|
|
|
+ let public_inputs = vec![
|
|
|
+ *value_coords.x(),
|
|
|
+ *value_coords.y(),
|
|
|
+ c2,
|
|
|
+ d,
|
|
|
+ root.inner(),
|
|
|
+ pub_x,
|
|
|
+ pub_y,
|
|
|
+ ephem_x,
|
|
|
+ ephem_y,
|
|
|
+ ];
|
|
|
+
|
|
|
+ println!("Creating proof");
|
|
|
+ let circuit = ZkCircuit::new(prover_witnesses, zkbin);
|
|
|
+ let proof = Proof::create(&pk, &[circuit], &public_inputs, &mut OsRng)?;
|
|
|
+
|
|
|
+ println!("Verifying with vk1");
|
|
|
+ proof.verify(&vk1, &public_inputs)?;
|
|
|
+
|
|
|
+ println!("Verifying with vk2");
|
|
|
+ proof.verify(&vk2, &public_inputs)?;
|
|
|
+
|
|
|
+ println!("Verifying with vk3");
|
|
|
+ proof.verify(&vk3, &public_inputs)?;
|
|
|
+
|
|
|
+ println!("Verifying with vk4");
|
|
|
+ proof.verify(&vk4, &public_inputs)?;
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+}
|