jf_prf/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
// Copyright (c) 2022 Espresso Systems (espressosys.com)
// This file is part of the Jellyfish library.
// You should have received a copy of the MIT License
// along with the Jellyfish library. If not, see <https://mit-license.org/>.
//! Trait definition for Pseudorandom function (PRF).
#![no_std]
use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};
use ark_std::{
borrow::Borrow,
fmt::Debug,
rand::{CryptoRng, RngCore},
UniformRand,
};
/// Trait for Pseudo-random Functions
pub trait PRF {
/// Input to the PRF
type Input: Clone + CanonicalDeserialize;
/// Output of the PRF
type Output: Clone + Debug + PartialEq + Eq + CanonicalSerialize;
/// The random seed/key that index a specific function from the PRF
/// ensembles
type Seed: Clone + Debug + Default + UniformRand + CanonicalSerialize + CanonicalDeserialize;
/// Error type
type Error: ark_std::error::Error;
/// Compute PRF output with a user-provided randomly generated `seed`
fn evaluate<S: Borrow<Self::Seed>, I: Borrow<Self::Input>>(
seed: S,
input: I,
) -> Result<Self::Output, Self::Error>;
/// same as [`Self::evaluate`] except that we generate a fresh random seed
/// for the evaluation
fn evaluate_with_rand_seed<R: RngCore + CryptoRng, T: Borrow<Self::Input>>(
rng: &mut R,
input: T,
) -> Result<(Self::Seed, Self::Output), Self::Error> {
let seed = Self::Seed::rand(rng);
let output = Self::evaluate(&seed, input)?;
Ok((seed, output))
}
}