Skip to content

Commit 6a30e1b

Browse files
uudiinmimizohar
authored andcommitted
crypto: rename sm3-256 to sm3 in hash_algo_name
The name sm3-256 is defined in hash_algo_name in hash_info, but the algorithm name implemented in sm3_generic.c is sm3, which will cause the sm3-256 algorithm to be not found in some application scenarios of the hash algorithm, and an ENOENT error will occur. For example, IMA, keys, and other subsystems that reference hash_algo_name all use the hash algorithm of sm3. Fixes: 5ca4c20 ("keys, trusted: select hash algorithm for TPM2 chips") Signed-off-by: Tianjia Zhang <[email protected]> Reviewed-by: Pascal van Leeuwen <[email protected]> Signed-off-by: Mimi Zohar <[email protected]>
1 parent 3be54d5 commit 6a30e1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto/hash_info.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const char *const hash_algo_name[HASH_ALGO__LAST] = {
2626
[HASH_ALGO_TGR_128] = "tgr128",
2727
[HASH_ALGO_TGR_160] = "tgr160",
2828
[HASH_ALGO_TGR_192] = "tgr192",
29-
[HASH_ALGO_SM3_256] = "sm3-256",
29+
[HASH_ALGO_SM3_256] = "sm3",
3030
[HASH_ALGO_STREEBOG_256] = "streebog256",
3131
[HASH_ALGO_STREEBOG_512] = "streebog512",
3232
};

0 commit comments

Comments
 (0)