use snarkvm_errors::algorithms::CommitmentError;
use snarkvm_models::algorithms::CommitmentScheme;
use blake2::Blake2s as blake2s;
use digest::Digest;
use rand::Rng;
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct Blake2sCommitment;
impl CommitmentScheme for Blake2sCommitment {
type Output = [u8; 32];
type Parameters = ();
type Randomness = [u8; 32];
fn setup<R: Rng>(_: &mut R) -> Self {
Self
}
fn commit(&self, input: &[u8], randomness: &Self::Randomness) -> Result<Self::Output, CommitmentError> {
let mut h = blake2s::new();
h.input(input);
h.input(randomness.as_ref());
let mut result = [0u8; 32];
result.copy_from_slice(&h.result());
Ok(result)
}
fn parameters(&self) -> &Self::Parameters {
&()
}
}
impl From<()> for Blake2sCommitment {
fn from(_: ()) -> Self {
Self
}
}