iPXE
config_crypto.c
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU General Public License as
4  * published by the Free Software Foundation; either version 2 of the
5  * License, or (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful, but
8  * WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10  * General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  *
17  * You can also choose to distribute this program under the terms of
18  * the Unmodified Binary Distribution Licence (as given in the file
19  * COPYING.UBDL), provided that you have satisfied its requirements.
20  */
21 
22 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
23 
24 #include <config/crypto.h>
25 
26 /** @file
27  *
28  * Cryptographic configuration
29  *
30  * Cryptographic configuration is slightly messy since we need to drag
31  * in objects based on combinations of build options.
32  */
33 
35 
36 /* RSA */
37 #if defined ( CRYPTO_PUBKEY_RSA )
38 REQUIRE_OBJECT ( oid_rsa );
39 #endif
40 
41 /* MD4 */
42 #if defined ( CRYPTO_DIGEST_MD4 )
44 #endif
45 
46 /* MD5 */
47 #if defined ( CRYPTO_DIGEST_MD5 )
49 #endif
50 
51 /* SHA-1 */
52 #if defined ( CRYPTO_DIGEST_SHA1 )
54 #endif
55 
56 /* SHA-224 */
57 #if defined ( CRYPTO_DIGEST_SHA224 )
59 #endif
60 
61 /* SHA-256 */
62 #if defined ( CRYPTO_DIGEST_SHA256 )
64 #endif
65 
66 /* SHA-384 */
67 #if defined ( CRYPTO_DIGEST_SHA384 )
69 #endif
70 
71 /* SHA-512 */
72 #if defined ( CRYPTO_DIGEST_SHA512 )
74 #endif
75 
76 /* SHA-512/224 */
77 #if defined ( CRYPTO_DIGEST_SHA512_224 )
79 #endif
80 
81 /* SHA-512/256 */
82 #if defined ( CRYPTO_DIGEST_SHA512_256 )
84 #endif
85 
86 /* X25519 */
87 #if defined ( CRYPTO_CURVE_X25519 )
89 #endif
90 
91 /* RSA and MD5 */
92 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_MD5 )
93 REQUIRE_OBJECT ( rsa_md5 );
94 #endif
95 
96 /* RSA and SHA-1 */
97 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_SHA1 )
98 REQUIRE_OBJECT ( rsa_sha1 );
99 #endif
100 
101 /* RSA and SHA-224 */
102 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_SHA224 )
103 REQUIRE_OBJECT ( rsa_sha224 );
104 #endif
105 
106 /* RSA and SHA-256 */
107 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_SHA256 )
108 REQUIRE_OBJECT ( rsa_sha256 );
109 #endif
110 
111 /* RSA and SHA-384 */
112 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_SHA384 )
113 REQUIRE_OBJECT ( rsa_sha384 );
114 #endif
115 
116 /* RSA and SHA-512 */
117 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_SHA512 )
118 REQUIRE_OBJECT ( rsa_sha512 );
119 #endif
120 
121 /* RSA, AES-CBC, and SHA-1 */
122 #if defined ( CRYPTO_EXCHANGE_PUBKEY ) && defined ( CRYPTO_PUBKEY_RSA ) && \
123  defined ( CRYPTO_CIPHER_AES_CBC ) && defined ( CRYPTO_DIGEST_SHA1 )
124 REQUIRE_OBJECT ( rsa_aes_cbc_sha1 );
125 #endif
126 
127 /* RSA, AES-CBC, and SHA-256 */
128 #if defined ( CRYPTO_EXCHANGE_PUBKEY ) && defined ( CRYPTO_PUBKEY_RSA ) && \
129  defined ( CRYPTO_CIPHER_AES_CBC ) && defined ( CRYPTO_DIGEST_SHA256 )
130 REQUIRE_OBJECT ( rsa_aes_cbc_sha256 );
131 #endif
132 
133 /* RSA, AES-GCM, and SHA-256 */
134 #if defined ( CRYPTO_EXCHANGE_PUBKEY ) && defined ( CRYPTO_PUBKEY_RSA ) && \
135  defined ( CRYPTO_CIPHER_AES_GCM ) && defined ( CRYPTO_DIGEST_SHA256 )
136 REQUIRE_OBJECT ( rsa_aes_gcm_sha256 );
137 #endif
138 
139 /* RSA, AES-GCM, and SHA-384 */
140 #if defined ( CRYPTO_EXCHANGE_PUBKEY ) && defined ( CRYPTO_PUBKEY_RSA ) && \
141  defined ( CRYPTO_CIPHER_AES_GCM ) && defined ( CRYPTO_DIGEST_SHA384 )
142 REQUIRE_OBJECT ( rsa_aes_gcm_sha384 );
143 #endif
144 
145 /* DHE, RSA, AES-CBC, and SHA-1 */
146 #if defined ( CRYPTO_EXCHANGE_DHE ) && defined ( CRYPTO_PUBKEY_RSA ) && \
147  defined ( CRYPTO_CIPHER_AES_CBC ) && defined ( CRYPTO_DIGEST_SHA1 )
148 REQUIRE_OBJECT ( dhe_rsa_aes_cbc_sha1 );
149 #endif
150 
151 /* DHE, RSA, AES-CBC, and SHA-256 */
152 #if defined ( CRYPTO_EXCHANGE_DHE ) && defined ( CRYPTO_PUBKEY_RSA ) && \
153  defined ( CRYPTO_CIPHER_AES_CBC ) && defined ( CRYPTO_DIGEST_SHA256 )
154 REQUIRE_OBJECT ( dhe_rsa_aes_cbc_sha256 );
155 #endif
156 
157 /* DHE, RSA, AES-GCM, and SHA-256 */
158 #if defined ( CRYPTO_EXCHANGE_DHE ) && defined ( CRYPTO_PUBKEY_RSA ) && \
159  defined ( CRYPTO_CIPHER_AES_GCM ) && defined ( CRYPTO_DIGEST_SHA256 )
160 REQUIRE_OBJECT ( dhe_rsa_aes_gcm_sha256 );
161 #endif
162 
163 /* DHE, RSA, AES-GCM, and SHA-384 */
164 #if defined ( CRYPTO_EXCHANGE_DHE ) && defined ( CRYPTO_PUBKEY_RSA ) && \
165  defined ( CRYPTO_CIPHER_AES_GCM ) && defined ( CRYPTO_DIGEST_SHA384 )
166 REQUIRE_OBJECT ( dhe_rsa_aes_gcm_sha384 );
167 #endif
168 
169 /* ECDHE, RSA, AES-CBC, and SHA-1 */
170 #if defined ( CRYPTO_EXCHANGE_ECDHE ) && defined ( CRYPTO_PUBKEY_RSA ) && \
171  defined ( CRYPTO_CIPHER_AES_CBC ) && defined ( CRYPTO_DIGEST_SHA1 )
172 REQUIRE_OBJECT ( ecdhe_rsa_aes_cbc_sha1 );
173 #endif
174 
175 /* ECDHE, RSA, AES-CBC, and SHA-256 */
176 #if defined ( CRYPTO_EXCHANGE_ECDHE ) && defined ( CRYPTO_PUBKEY_RSA ) && \
177  defined ( CRYPTO_CIPHER_AES_CBC ) && defined ( CRYPTO_DIGEST_SHA256 )
178 REQUIRE_OBJECT ( ecdhe_rsa_aes_cbc_sha256 );
179 #endif
180 
181 /* ECDHE, RSA, AES-CBC, and SHA-384 */
182 #if defined ( CRYPTO_EXCHANGE_ECDHE ) && defined ( CRYPTO_PUBKEY_RSA ) && \
183  defined ( CRYPTO_CIPHER_AES_CBC ) && defined ( CRYPTO_DIGEST_SHA384 )
184 REQUIRE_OBJECT ( ecdhe_rsa_aes_cbc_sha384 );
185 #endif
186 
187 /* ECDHE, RSA, AES-GCM, and SHA-256 */
188 #if defined ( CRYPTO_EXCHANGE_ECDHE ) && defined ( CRYPTO_PUBKEY_RSA ) && \
189  defined ( CRYPTO_CIPHER_AES_GCM ) && defined ( CRYPTO_DIGEST_SHA256 )
190 REQUIRE_OBJECT ( ecdhe_rsa_aes_gcm_sha256 );
191 #endif
192 
193 /* ECDHE, RSA, AES-GCM, and SHA-384 */
194 #if defined ( CRYPTO_EXCHANGE_ECDHE ) && defined ( CRYPTO_PUBKEY_RSA ) && \
195  defined ( CRYPTO_CIPHER_AES_GCM ) && defined ( CRYPTO_DIGEST_SHA384 )
196 REQUIRE_OBJECT ( ecdhe_rsa_aes_gcm_sha384 );
197 #endif
static uint8_t oid_sha1[]
"sha1" object identifier
Definition: oid_sha1.c:30
static uint8_t oid_md4[]
"md4" object identifier
Definition: oid_md4.c:30
static uint8_t oid_sha512[]
"sha512" object identifier
Definition: oid_sha512.c:30
#define REQUIRE_OBJECT(object)
Require an object.
Definition: compiler.h:202
PROVIDE_REQUIRING_SYMBOL()
static uint8_t oid_x25519[]
"x25519" object identifier
Definition: oid_x25519.c:32
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
static uint8_t oid_sha224[]
"sha224" object identifier
Definition: oid_sha224.c:30
static uint8_t oid_sha384[]
"sha384" object identifier
Definition: oid_sha384.c:30
static uint8_t oid_sha512_224[]
"sha512_224" object identifier
Cryptographic configuration.
static uint8_t oid_sha256[]
"sha256" object identifier
Definition: oid_sha256.c:30
static uint8_t oid_md5[]
"md5" object identifier
Definition: oid_md5.c:30
static uint8_t oid_sha512_256[]
"sha512_256" object identifier