made trait private, tbd pub in future?

This commit is contained in:
2025-08-19 00:10:14 -04:00
parent ece941fde6
commit e2ff93cc9f

View File

@@ -65,7 +65,7 @@ impl HashReturn {
} }
} }
pub trait Hasher { trait Hasher {
fn new() -> Self; fn new() -> Self;
fn digest(&mut self, bytes: impl AsRef<[u8]>); fn digest(&mut self, bytes: impl AsRef<[u8]>);
fn complete(self) -> HashReturn; fn complete(self) -> HashReturn;