pub trait Hashable {
// Required method
fn hash(&self) -> [u8; 32];
}Expand description
Trait indicating that an object can be hased with respect to the CT protocol
This for now always refers to the Sha256 algorithm, but this might change in the future