From 491cfafd271f9f7a2a5e5716da565c0292893c6e Mon Sep 17 00:00:00 2001 From: Nanak Nihal Singh Khalsa Date: Wed, 25 Jan 2023 19:22:15 -0500 Subject: [PATCH] blh is public now --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 5b3bf9f..e11c45c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -241,7 +241,7 @@ pub fn decompress_point(bb: [u8; 32]) -> Result { // hash.to_vec() // } -fn blh(b: &[u8]) -> Vec { +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);