Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1 | /* |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 2 | * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved. |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef KEY_H_ |
| 8 | #define KEY_H_ |
| 9 | |
| 10 | #include <openssl/ossl_typ.h> |
| 11 | |
| 12 | #define RSA_KEY_BITS 2048 |
| 13 | |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 14 | /* Error codes */ |
| 15 | enum { |
| 16 | KEY_ERR_NONE, |
| 17 | KEY_ERR_MALLOC, |
| 18 | KEY_ERR_FILENAME, |
| 19 | KEY_ERR_OPEN, |
| 20 | KEY_ERR_LOAD |
| 21 | }; |
| 22 | |
| 23 | /* Supported key algorithms */ |
| 24 | enum { |
Soby Mathew | 2fd70f6 | 2017-08-31 11:50:29 +0100 | [diff] [blame] | 25 | KEY_ALG_RSA, /* RSA PSS as defined by PKCS#1 v2.1 (default) */ |
| 26 | KEY_ALG_RSA_1_5, /* RSA as defined by PKCS#1 v1.5 */ |
Juan Castillo | a2224ab | 2015-06-30 13:36:57 +0100 | [diff] [blame] | 27 | #ifndef OPENSSL_NO_EC |
| 28 | KEY_ALG_ECDSA, |
| 29 | #endif /* OPENSSL_NO_EC */ |
| 30 | KEY_ALG_MAX_NUM |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 31 | }; |
| 32 | |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 33 | /* Supported hash algorithms */ |
| 34 | enum{ |
| 35 | HASH_ALG_SHA256, |
| 36 | HASH_ALG_SHA384, |
| 37 | HASH_ALG_SHA512, |
| 38 | }; |
| 39 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 40 | /* |
| 41 | * This structure contains the relevant information to create the keys |
| 42 | * required to sign the certificates. |
| 43 | * |
| 44 | * One instance of this structure must be created for each key, usually in an |
| 45 | * array fashion. The filename is obtained at run time from the command line |
| 46 | * parameters |
| 47 | */ |
| 48 | typedef struct key_s { |
| 49 | int id; /* Key id */ |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 50 | const char *opt; /* Command line option to specify a key */ |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 51 | const char *help_msg; /* Help message */ |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 52 | const char *desc; /* Key description (debug purposes) */ |
| 53 | char *fn; /* Filename to load/store the key */ |
| 54 | EVP_PKEY *key; /* Key container */ |
| 55 | } key_t; |
| 56 | |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 57 | /* Exported API */ |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 58 | int key_init(void); |
| 59 | key_t *key_get_by_opt(const char *opt); |
Masahiro Yamada | bccb109 | 2017-02-06 21:15:01 +0900 | [diff] [blame] | 60 | int key_new(key_t *key); |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 61 | int key_create(key_t *key, int type); |
| 62 | int key_load(key_t *key, unsigned int *err_code); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 63 | int key_store(key_t *key); |
| 64 | |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 65 | /* Macro to register the keys used in the CoT */ |
| 66 | #define REGISTER_KEYS(_keys) \ |
| 67 | key_t *keys = &_keys[0]; \ |
Sandrine Bailleux | df8de2d | 2016-01-04 15:49:23 +0000 | [diff] [blame] | 68 | const unsigned int num_keys = sizeof(_keys)/sizeof(_keys[0]) |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 69 | |
| 70 | /* Exported variables */ |
| 71 | extern key_t *keys; |
| 72 | extern const unsigned int num_keys; |
| 73 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 74 | #endif /* KEY_H_ */ |