From 8ebd4871e9031b879ce34b78b9e66b66e67e133f Mon Sep 17 00:00:00 2001 From: Timothy Prinz Date: Tue, 12 Mar 2024 15:26:35 -0700 Subject: [PATCH] Fixing build error missed due to hash transcript option Signed-off-by: Timothy Prinz --- spdmlib/src/crypto/crypto_null/hash_impl.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/spdmlib/src/crypto/crypto_null/hash_impl.rs b/spdmlib/src/crypto/crypto_null/hash_impl.rs index 0b7d55f..cdbb81f 100644 --- a/spdmlib/src/crypto/crypto_null/hash_impl.rs +++ b/spdmlib/src/crypto/crypto_null/hash_impl.rs @@ -24,7 +24,8 @@ fn hash_all(base_hash_algo: SpdmBaseHashAlgo, data: &[u8]) -> Option SpdmResult { unimplemented!() @@ -41,8 +42,4 @@ mod hash_ext { pub fn hash_ctx_init(base_hash_algo: SpdmBaseHashAlgo) -> Option { unimplemented!() } - - fn insert_to_table(value: Box) -> usize { - unimplemented!() - } }