From fca6fda0a068775fbd34f3f9618109f5abf47d1c Mon Sep 17 00:00:00 2001 From: GUO Zihua Date: Tue, 28 Nov 2023 01:56:32 +0000 Subject: [PATCH] keys: Allow automatic module signature with SM3 hulk inclusion category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/I5K5HM CVE: NA -------------------------------- Support SM3 algorithm for module automatic signature during "make modules_install" and "make modules_sign". Signed-off-by: GUO Zihua Reviewed-by: Xiu Jianfeng Reviewed-by: Chao Liu Signed-off-by: Zheng Zengkai Conflicts: init/Kconfig Signed-off-by: GUO Zihua --- kernel/module/Kconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kernel/module/Kconfig b/kernel/module/Kconfig index 33a2e991f608..10bea6de5a05 100644 --- a/kernel/module/Kconfig +++ b/kernel/module/Kconfig @@ -256,6 +256,10 @@ config MODULE_SIG_SHA512 bool "Sign modules with SHA-512" select CRYPTO_SHA512 +config MODULE_SIG_SM3 + bool "Sign modules with SM3" + select CRYPTO_SM3 + endchoice config MODULE_SIG_HASH @@ -266,6 +270,7 @@ config MODULE_SIG_HASH default "sha256" if MODULE_SIG_SHA256 default "sha384" if MODULE_SIG_SHA384 default "sha512" if MODULE_SIG_SHA512 + default "sm3" if MODULE_SIG_SM3 choice prompt "Module compression mode" -- Gitee