use alloc::boxed::Box;
use dusk_bytes::Serializable;
use dusk_curves::bls12_381::BlsScalar;
use merlin::Transcript;
use crate::commitment_scheme::Commitment;
use crate::proof_system::VerifierKey;
cfg_if::cfg_if! {
if #[cfg(feature = "std")] {
fn transcript_label_static(label: &[u8]) -> &'static [u8] {
use alloc::vec::Vec;
use std::sync::Mutex;
use std::collections::HashMap;
static CACHE: Mutex<Option<HashMap<Vec<u8>, &'static [u8]>>> =
Mutex::new(None);
let mut guard =
CACHE.lock().unwrap_or_else(|e| e.into_inner());
let map = guard.get_or_insert_with(HashMap::new);
if let Some(&cached) = map.get(label) {
return cached;
}
let leaked: &'static [u8] =
Box::leak(label.to_vec().into_boxed_slice());
map.insert(label.to_vec(), leaked);
leaked
}
} else {
fn transcript_label_static(label: &[u8]) -> &'static [u8] {
Box::leak(label.to_vec().into_boxed_slice())
}
}
}
pub(crate) trait TranscriptProtocol {
fn append_commitment(&mut self, label: &'static [u8], comm: &Commitment);
fn append_scalar(&mut self, label: &'static [u8], s: &BlsScalar);
fn challenge_scalar(&mut self, label: &'static [u8]) -> BlsScalar;
fn circuit_domain_sep(&mut self, n: u64);
fn base(
label: &[u8],
verifier_key: &VerifierKey,
constraints: usize,
) -> Self;
fn base_v3(
label: &[u8],
verifier_key: &VerifierKey,
constraints: usize,
) -> Self;
}
impl TranscriptProtocol for Transcript {
fn append_commitment(&mut self, label: &'static [u8], comm: &Commitment) {
self.append_message(label, &comm.0.to_bytes());
}
fn append_scalar(&mut self, label: &'static [u8], s: &BlsScalar) {
self.append_message(label, &s.to_bytes())
}
fn challenge_scalar(&mut self, label: &'static [u8]) -> BlsScalar {
let mut buf = [0u8; 64];
self.challenge_bytes(label, &mut buf);
BlsScalar::from_bytes_wide(&buf)
}
fn circuit_domain_sep(&mut self, n: u64) {
self.append_message(b"dom-sep", b"circuit_size");
self.append_u64(b"n", n);
}
fn base(
label: &[u8],
verifier_key: &VerifierKey,
constraints: usize,
) -> Self {
let label = transcript_label_static(label);
let mut transcript = Transcript::new(label);
transcript.circuit_domain_sep(constraints as u64);
verifier_key.seed_transcript_legacy(&mut transcript);
transcript
}
fn base_v3(
label: &[u8],
verifier_key: &VerifierKey,
constraints: usize,
) -> Self {
let label = transcript_label_static(label);
let mut transcript = Transcript::new(label);
transcript.circuit_domain_sep(constraints as u64);
verifier_key.seed_transcript(&mut transcript);
transcript
}
}