diff --git a/src/poly.rs b/src/poly.rs index 26e776a..193bd39 100644 --- a/src/poly.rs +++ b/src/poly.rs @@ -229,9 +229,4 @@ impl Rotation { pub fn next() -> Rotation { Rotation(1) } - - /// Hash Rotation into a Blake2bState - pub fn hash_into(&self, hasher: &mut Blake2bState) { - hasher.update(&format!("{:?}", self).as_bytes()); - } }