These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / roms / ipxe / src / config / config_crypto.c
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
34 PROVIDE_REQUIRING_SYMBOL();
35
36 /* RSA and MD5 */
37 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_MD5 )
38 REQUIRE_OBJECT ( rsa_md5 );
39 #endif
40
41 /* RSA and SHA-1 */
42 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_SHA1 )
43 REQUIRE_OBJECT ( rsa_sha1 );
44 #endif
45
46 /* RSA and SHA-224 */
47 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_SHA224 )
48 REQUIRE_OBJECT ( rsa_sha224 );
49 #endif
50
51 /* RSA and SHA-256 */
52 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_SHA256 )
53 REQUIRE_OBJECT ( rsa_sha256 );
54 #endif
55
56 /* RSA and SHA-384 */
57 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_SHA384 )
58 REQUIRE_OBJECT ( rsa_sha384 );
59 #endif
60
61 /* RSA and SHA-512 */
62 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_DIGEST_SHA512 )
63 REQUIRE_OBJECT ( rsa_sha512 );
64 #endif
65
66 /* RSA, AES-CBC, and SHA-1 */
67 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_CIPHER_AES_CBC ) && \
68     defined ( CRYPTO_DIGEST_SHA1 )
69 REQUIRE_OBJECT ( rsa_aes_cbc_sha1 );
70 #endif
71
72 /* RSA, AES-CBC, and SHA-256 */
73 #if defined ( CRYPTO_PUBKEY_RSA ) && defined ( CRYPTO_CIPHER_AES_CBC ) && \
74     defined ( CRYPTO_DIGEST_SHA256 )
75 REQUIRE_OBJECT ( rsa_aes_cbc_sha256 );
76 #endif