1 Star 0 Fork 10

jinlun/dim

forked from src-openEuler/dim 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
backport-Add-sm3-compile-macro-and-set-the-algo-name.patch 975 Bytes
一键复制 编辑 原始数据 按行查看 历史
From db470817655f80d63592c6550bdaca875dd42120 Mon Sep 17 00:00:00 2001
From: Huaxin Lu <luhuaxin1@huawei.com>
Date: Mon, 29 Apr 2024 23:10:50 +0800
Subject: [PATCH 05/28] Add sm3 compile macro and set the algo name
---
src/common/dim_hash.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/common/dim_hash.c b/src/common/dim_hash.c
index 9f73320..3f6ecb7 100644
--- a/src/common/dim_hash.c
+++ b/src/common/dim_hash.c
@@ -9,7 +9,9 @@
static const char *allow_hash[] = {
"sha256",
+#ifdef DIM_HASH_SUPPORT_SM3
"sm3",
+#endif
};
int dim_hash_init(const char *algo_name, struct dim_hash *hash)
@@ -30,6 +32,7 @@ int dim_hash_init(const char *algo_name, struct dim_hash *hash)
hash->tfm = NULL;
}
+ hash->name = algo_name;
return ret;
}
@@ -63,4 +66,4 @@ int dim_hash_calculate(const void *data, unsigned int len,
return ret;
return crypto_shash_final(shash, digest->data);
-}
\ No newline at end of file
+}
--
2.33.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jinlun123123/dim.git
git@gitee.com:jinlun123123/dim.git
jinlun123123
dim
dim
master

搜索帮助