blob: cdcf504025d68f1e9d2ca94cd23fdb3fbc993c1d [file] [log] [blame]
Juan Castillo8e55d932015-04-02 09:48:16 +01001/*
Manish V Badarkhee112a5a2021-10-06 23:41:50 +01002 * Copyright (c) 2015-2021, Arm Limited and Contributors. All rights reserved.
Juan Castillo8e55d932015-04-02 09:48:16 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Juan Castillo8e55d932015-04-02 09:48:16 +01005 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef CRYPTO_MOD_H
8#define CRYPTO_MOD_H
Juan Castillo8e55d932015-04-02 09:48:16 +01009
10/* Return values */
11enum crypto_ret_value {
12 CRYPTO_SUCCESS = 0,
13 CRYPTO_ERR_INIT,
14 CRYPTO_ERR_HASH,
15 CRYPTO_ERR_SIGNATURE,
Sumit Garg392e4df2019-11-15 10:43:00 +053016 CRYPTO_ERR_DECRYPTION,
Juan Castillo8e55d932015-04-02 09:48:16 +010017 CRYPTO_ERR_UNKNOWN
18};
19
Sumit Garg392e4df2019-11-15 10:43:00 +053020#define CRYPTO_MAX_IV_SIZE 16U
21#define CRYPTO_MAX_TAG_SIZE 16U
22
23/* Decryption algorithm */
24enum crypto_dec_algo {
25 CRYPTO_GCM_DECRYPT = 0
26};
27
Manish V Badarkhee112a5a2021-10-06 23:41:50 +010028/* Message digest algorithm */
29enum crypto_md_algo {
30 CRYPTO_MD_SHA256,
31 CRYPTO_MD_SHA384,
32 CRYPTO_MD_SHA512,
33};
34
35/* Maximum size as per the known stronger hash algorithm i.e.SHA512 */
36#define CRYPTO_MD_MAX_SIZE 64U
37
Juan Castillo8e55d932015-04-02 09:48:16 +010038/*
39 * Cryptographic library descriptor
40 */
41typedef struct crypto_lib_desc_s {
42 const char *name;
43
44 /* Initialize library. This function is not expected to fail. All errors
45 * must be handled inside the function, asserting or panicing in case of
46 * a non-recoverable error */
47 void (*init)(void);
48
49 /* Verify a digital signature. Return one of the
50 * 'enum crypto_ret_value' options */
51 int (*verify_signature)(void *data_ptr, unsigned int data_len,
52 void *sig_ptr, unsigned int sig_len,
53 void *sig_alg, unsigned int sig_alg_len,
54 void *pk_ptr, unsigned int pk_len);
55
56 /* Verify a hash. Return one of the 'enum crypto_ret_value' options */
57 int (*verify_hash)(void *data_ptr, unsigned int data_len,
58 void *digest_info_ptr, unsigned int digest_info_len);
Alexei Fedorov913cb7e2020-01-23 14:27:38 +000059
60#if MEASURED_BOOT
61 /* Calculate a hash. Return hash value */
Manish V Badarkhee112a5a2021-10-06 23:41:50 +010062 int (*calc_hash)(enum crypto_md_algo md_alg, void *data_ptr,
63 unsigned int data_len,
64 unsigned char output[CRYPTO_MD_MAX_SIZE]);
Alexei Fedorov913cb7e2020-01-23 14:27:38 +000065#endif /* MEASURED_BOOT */
66
Sumit Garg392e4df2019-11-15 10:43:00 +053067 /*
68 * Authenticated decryption. Return one of the
69 * 'enum crypto_ret_value' options.
70 */
71 int (*auth_decrypt)(enum crypto_dec_algo dec_algo, void *data_ptr,
72 size_t len, const void *key, unsigned int key_len,
73 unsigned int key_flags, const void *iv,
74 unsigned int iv_len, const void *tag,
75 unsigned int tag_len);
Juan Castillo8e55d932015-04-02 09:48:16 +010076} crypto_lib_desc_t;
77
78/* Public functions */
79void crypto_mod_init(void);
80int crypto_mod_verify_signature(void *data_ptr, unsigned int data_len,
81 void *sig_ptr, unsigned int sig_len,
Roberto Vargasbe126ed2018-02-12 12:36:17 +000082 void *sig_alg_ptr, unsigned int sig_alg_len,
Juan Castillo8e55d932015-04-02 09:48:16 +010083 void *pk_ptr, unsigned int pk_len);
84int crypto_mod_verify_hash(void *data_ptr, unsigned int data_len,
85 void *digest_info_ptr, unsigned int digest_info_len);
Sumit Garg392e4df2019-11-15 10:43:00 +053086int crypto_mod_auth_decrypt(enum crypto_dec_algo dec_algo, void *data_ptr,
87 size_t len, const void *key, unsigned int key_len,
88 unsigned int key_flags, const void *iv,
89 unsigned int iv_len, const void *tag,
90 unsigned int tag_len);
Juan Castillo8e55d932015-04-02 09:48:16 +010091
Alexei Fedorov913cb7e2020-01-23 14:27:38 +000092#if MEASURED_BOOT
Manish V Badarkhee112a5a2021-10-06 23:41:50 +010093int crypto_mod_calc_hash(enum crypto_md_algo alg, void *data_ptr,
94 unsigned int data_len,
95 unsigned char output[CRYPTO_MD_MAX_SIZE]);
Alexei Fedorov913cb7e2020-01-23 14:27:38 +000096
Juan Castillo8e55d932015-04-02 09:48:16 +010097/* Macro to register a cryptographic library */
Alexei Fedorov913cb7e2020-01-23 14:27:38 +000098#define REGISTER_CRYPTO_LIB(_name, _init, _verify_signature, _verify_hash, \
Sumit Garg392e4df2019-11-15 10:43:00 +053099 _calc_hash, _auth_decrypt) \
Alexei Fedorov913cb7e2020-01-23 14:27:38 +0000100 const crypto_lib_desc_t crypto_lib_desc = { \
101 .name = _name, \
102 .init = _init, \
103 .verify_signature = _verify_signature, \
104 .verify_hash = _verify_hash, \
Sumit Garg392e4df2019-11-15 10:43:00 +0530105 .calc_hash = _calc_hash, \
106 .auth_decrypt = _auth_decrypt \
Alexei Fedorov913cb7e2020-01-23 14:27:38 +0000107 }
108#else
Sumit Garg392e4df2019-11-15 10:43:00 +0530109#define REGISTER_CRYPTO_LIB(_name, _init, _verify_signature, _verify_hash, \
110 _auth_decrypt) \
Juan Castillo8e55d932015-04-02 09:48:16 +0100111 const crypto_lib_desc_t crypto_lib_desc = { \
112 .name = _name, \
113 .init = _init, \
114 .verify_signature = _verify_signature, \
Sumit Garg392e4df2019-11-15 10:43:00 +0530115 .verify_hash = _verify_hash, \
116 .auth_decrypt = _auth_decrypt \
Juan Castillo8e55d932015-04-02 09:48:16 +0100117 }
Alexei Fedorov913cb7e2020-01-23 14:27:38 +0000118#endif /* MEASURED_BOOT */
Juan Castillo8e55d932015-04-02 09:48:16 +0100119
Roberto Vargas52f707f2018-02-12 12:36:17 +0000120extern const crypto_lib_desc_t crypto_lib_desc;
121
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +0000122#endif /* CRYPTO_MOD_H */