From 08fc46eb66ab0285b3dbc6233758a9ca64b32570 Mon Sep 17 00:00:00 2001 From: moana Date: Wed, 8 May 2024 12:09:34 +0100 Subject: [PATCH] Fix audit finding HASH2 Resolves #256 --- src/hades.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hades.rs b/src/hades.rs index 89eaa78..665c8c8 100644 --- a/src/hades.rs +++ b/src/hades.rs @@ -115,11 +115,11 @@ mod tests { // absorb given input sponge .absorb(input.len(), input) - .expect("Absorbtion of the input should work fine"); + .expect("Absorption of the input should work fine"); // absorb padding of one BlsScalar::one() sponge .absorb(1, &[BlsScalar::one()]) - .expect("Absorbtion of padding should work fine"); + .expect("Absorption of padding should work fine"); sponge.squeeze(1).expect("Squeezing should work fine"); let output = sponge.finish().expect("Finish should work fine"); output[0]