Struct snarkvm_algorithms::crypto_hash::poseidon::Poseidon
source · pub struct Poseidon<F: PrimeField, const RATE: usize> { /* private fields */ }
Implementations§
source§impl<F: PrimeField, const RATE: usize> Poseidon<F, RATE>
impl<F: PrimeField, const RATE: usize> Poseidon<F, RATE>
sourcepub fn evaluate(&self, input: &[F]) -> F
pub fn evaluate(&self, input: &[F]) -> F
Evaluate the cryptographic hash function over a list of field elements as input.
sourcepub fn evaluate_many(&self, input: &[F], num_outputs: usize) -> Vec<F>
pub fn evaluate_many(&self, input: &[F], num_outputs: usize) -> Vec<F>
Evaluate the cryptographic hash function over a list of field elements as input, and returns the specified number of field elements as output.
sourcepub fn evaluate_with_len(&self, input: &[F]) -> F
pub fn evaluate_with_len(&self, input: &[F]) -> F
Evaluate the cryptographic hash function over a non-fixed-length vector, in which the length also needs to be hashed.
pub fn parameters(&self) -> &Arc<PoseidonParameters<F, RATE, 1>>
Trait Implementations§
source§impl<F: PartialEq + PrimeField, const RATE: usize> PartialEq<Poseidon<F, RATE>> for Poseidon<F, RATE>
impl<F: PartialEq + PrimeField, const RATE: usize> PartialEq<Poseidon<F, RATE>> for Poseidon<F, RATE>
impl<F: Eq + PrimeField, const RATE: usize> Eq for Poseidon<F, RATE>
impl<F: PrimeField, const RATE: usize> StructuralEq for Poseidon<F, RATE>
impl<F: PrimeField, const RATE: usize> StructuralPartialEq for Poseidon<F, RATE>
Auto Trait Implementations§
impl<F, const RATE: usize> RefUnwindSafe for Poseidon<F, RATE>where F: RefUnwindSafe,
impl<F, const RATE: usize> Send for Poseidon<F, RATE>
impl<F, const RATE: usize> Sync for Poseidon<F, RATE>
impl<F, const RATE: usize> Unpin for Poseidon<F, RATE>
impl<F, const RATE: usize> UnwindSafe for Poseidon<F, RATE>where F: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.