use crate::{errors::CommitmentError, traits::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.update(input);
h.update(randomness.as_ref());
let mut result = [0u8; 32];
result.copy_from_slice(&h.finalize());
Ok(result)
}
fn parameters(&self) -> &Self::Parameters {
&()
}
}
impl From<()> for Blake2sCommitment {
fn from(_: ()) -> Self {
Self
}
}