1use mina_curves::pasta::Fp; 2 3use crate::bigint::InvalidBigInt; 4 5pub trait MinaHash { 6 fn try_hash(&self) -> Result<Fp, InvalidBigInt>; 7}