From 83e3b7688e77a3079f205bc71bf3abf2747c04e2 Mon Sep 17 00:00:00 2001 From: Nanak Nihal Singh Khalsa Date: Thu, 26 Jan 2023 22:48:43 -0500 Subject: [PATCH] removed print statements --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index f064a48..c9e36d3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -253,7 +253,6 @@ pub fn decompress_point(bb: [u8; 32]) -> Result { // } pub fn blh(b: &[u8]) -> Vec { - println!("TODO: add test that this new blake512 function is giving correct output. Not doing so could have unlikely yet critical implications"); let mut h = Blake2b512::new(); h.update(b); let digest = h.finalize(); @@ -743,7 +742,6 @@ mod tests { // test signature & verification let msg = BigInt::from_bytes_le(Sign::Plus, &hex::decode("00010203040506070809").unwrap()); - println!("msg {:?}", msg.to_string()); let sig = sk.sign(msg.clone()).unwrap(); assert_eq!( sig.r_b8.x.to_string(),