aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'include/crypto')
-rw-r--r--include/crypto/public_key.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/crypto/public_key.h b/include/crypto/public_key.h
index f5b0224c9967..619d5706d837 100644
--- a/include/crypto/public_key.h
+++ b/include/crypto/public_key.h
@@ -22,7 +22,7 @@ enum pkey_algo {
22 PKEY_ALGO__LAST 22 PKEY_ALGO__LAST
23}; 23};
24 24
25extern const char *const pkey_algo[PKEY_ALGO__LAST]; 25extern const char *const pkey_algo_name[PKEY_ALGO__LAST];
26 26
27enum pkey_hash_algo { 27enum pkey_hash_algo {
28 PKEY_HASH_MD4, 28 PKEY_HASH_MD4,
@@ -36,7 +36,7 @@ enum pkey_hash_algo {
36 PKEY_HASH__LAST 36 PKEY_HASH__LAST
37}; 37};
38 38
39extern const char *const pkey_hash_algo[PKEY_HASH__LAST]; 39extern const char *const pkey_hash_algo_name[PKEY_HASH__LAST];
40 40
41enum pkey_id_type { 41enum pkey_id_type {
42 PKEY_ID_PGP, /* OpenPGP generated key ID */ 42 PKEY_ID_PGP, /* OpenPGP generated key ID */
@@ -44,7 +44,7 @@ enum pkey_id_type {
44 PKEY_ID_TYPE__LAST 44 PKEY_ID_TYPE__LAST
45}; 45};
46 46
47extern const char *const pkey_id_type[PKEY_ID_TYPE__LAST]; 47extern const char *const pkey_id_type_name[PKEY_ID_TYPE__LAST];
48 48
49/* 49/*
50 * Cryptographic data for the public-key subtype of the asymmetric key type. 50 * Cryptographic data for the public-key subtype of the asymmetric key type.