diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2023-08-03 12:37:25 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-08-09 07:10:31 +0000 |
commit | 63c8d160ae32cbf51db9ea58061cc8976fae4980 (patch) | |
tree | 72d784963d8653a4d400ad2a2fd0e37c75b4d41a | |
parent | 84158d0ebe144acf597672313aef4e1c9c492ed3 (diff) | |
download | edk2-63c8d160ae32cbf51db9ea58061cc8976fae4980.tar.gz |
CryptoPkg/BaseCryptLib: adapt CryptSm3.c to openssl 3.0 changes.
Functions have been renamed.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Xiaoyu Lu <xiaoyu1.lu@intel.com>
Cc: Guomin Jiang <guomin.jiang@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Tested-by: Ard Biesheuvel <ardb@kernel.org>
Tested-by: Brian J. Johnson <brian.johnson@hpe.com>
Tested-by: Kenneth Lautner <klautner@microsoft.com>
-rw-r--r-- | CryptoPkg/Library/BaseCryptLib/Hash/CryptSm3.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/CryptoPkg/Library/BaseCryptLib/Hash/CryptSm3.c b/CryptoPkg/Library/BaseCryptLib/Hash/CryptSm3.c index bbbc1e56f2..03b168b9e2 100644 --- a/CryptoPkg/Library/BaseCryptLib/Hash/CryptSm3.c +++ b/CryptoPkg/Library/BaseCryptLib/Hash/CryptSm3.c @@ -7,7 +7,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent **/
#include "InternalCryptLib.h"
-#include "crypto/sm3.h"
+#include "internal/sm3.h"
/**
Retrieves the size, in bytes, of the context buffer required for SM3 hash operations.
@@ -55,7 +55,7 @@ Sm3Init ( //
// Openssl SM3 Context Initialization
//
- sm3_init ((SM3_CTX *)Sm3Context);
+ ossl_sm3_init ((SM3_CTX *)Sm3Context);
return TRUE;
}
@@ -136,7 +136,7 @@ Sm3Update ( //
// Openssl SM3 Hash Update
//
- sm3_update ((SM3_CTX *)Sm3Context, Data, DataSize);
+ ossl_sm3_update ((SM3_CTX *)Sm3Context, Data, DataSize);
return TRUE;
}
@@ -178,7 +178,7 @@ Sm3Final ( //
// Openssl SM3 Hash Finalization
//
- sm3_final (HashValue, (SM3_CTX *)Sm3Context);
+ ossl_sm3_final (HashValue, (SM3_CTX *)Sm3Context);
return TRUE;
}
@@ -225,11 +225,11 @@ Sm3HashAll ( //
// SM3 Hash Computation.
//
- sm3_init (&Ctx);
+ ossl_sm3_init (&Ctx);
- sm3_update (&Ctx, Data, DataSize);
+ ossl_sm3_update (&Ctx, Data, DataSize);
- sm3_final (HashValue, &Ctx);
+ ossl_sm3_final (HashValue, &Ctx);
return TRUE;
}
|