From 21e7145f46985cd653cc005b8d771bf61c5d5610 Mon Sep 17 00:00:00 2001 From: "Adrian L. Shaw" Date: Fri, 20 Sep 2019 16:01:11 +0100 Subject: [PATCH] Insert doxygen comments on old algorithms so they appear in PSA documentation --- include/psa/crypto_values.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/psa/crypto_values.h b/include/psa/crypto_values.h index fc0f9637f..310c43433 100644 --- a/include/psa/crypto_values.h +++ b/include/psa/crypto_values.h @@ -665,11 +665,15 @@ (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_KEY_DERIVATION) #define PSA_ALG_HASH_MASK ((psa_algorithm_t)0x000000ff) - +/** MD2 */ #define PSA_ALG_MD2 ((psa_algorithm_t)0x01000001) +/** MD4 */ #define PSA_ALG_MD4 ((psa_algorithm_t)0x01000002) +/** MD5 */ #define PSA_ALG_MD5 ((psa_algorithm_t)0x01000003) +/** PSA_ALG_RIPEMD160 */ #define PSA_ALG_RIPEMD160 ((psa_algorithm_t)0x01000004) +/** SHA1 */ #define PSA_ALG_SHA_1 ((psa_algorithm_t)0x01000005) /** SHA2-224 */ #define PSA_ALG_SHA_224 ((psa_algorithm_t)0x01000008)