pub trait RedactionHasher {
// Required methods
fn algorithm(&self) -> Label;
fn digest(&self, data: &[u8]) -> Vec<u8> ⓘ;
}Expand description
Redaction hash algorithm used for Salted Disclosed Claims.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".