1pub trait ReversibleDigest { 2 /** 3 * Returns a reversed Hash160version of the given digest 4 */ 5 fn reverse(&self) -> Self; 6}