pub trait HashOperations {
// Required method
fn hash(&self, algorithm: Algorithm, data: &[u8]) -> Result<Vec<u8>>;
}Expand description
Hash operations
Required Methods§
Implementors§
impl HashOperations for LibQHashProvider
Available on crate feature
alloc only.