From ea563434f48be4db4fde42665776feeda797e225 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Wed, 17 Feb 2021 10:48:28 -0700 Subject: [PATCH] Remove hash_into from Rotation. --- src/poly.rs | 5 ----- 1 file changed, 5 deletions(-) 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()); - } }