These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / roms / ipxe / src / crypto / mishmash / rsa_aes_cbc_sha1.c
1 /*
2  * Copyright (C) 2015 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  *
19  * You can also choose to distribute this program under the terms of
20  * the Unmodified Binary Distribution Licence (as given in the file
21  * COPYING.UBDL), provided that you have satisfied its requirements.
22  */
23
24 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25
26 #include <byteswap.h>
27 #include <ipxe/rsa.h>
28 #include <ipxe/aes.h>
29 #include <ipxe/sha1.h>
30 #include <ipxe/tls.h>
31
32 /** TLS_RSA_WITH_AES_128_CBC_SHA cipher suite */
33 struct tls_cipher_suite tls_rsa_with_aes_128_cbc_sha __tls_cipher_suite (03) = {
34         .code = htons ( TLS_RSA_WITH_AES_128_CBC_SHA ),
35         .key_len = ( 128 / 8 ),
36         .pubkey = &rsa_algorithm,
37         .cipher = &aes_cbc_algorithm,
38         .digest = &sha1_algorithm,
39 };
40
41 /** TLS_RSA_WITH_AES_256_CBC_SHA cipher suite */
42 struct tls_cipher_suite tls_rsa_with_aes_256_cbc_sha __tls_cipher_suite (04) = {
43         .code = htons ( TLS_RSA_WITH_AES_256_CBC_SHA ),
44         .key_len = ( 256 / 8 ),
45         .pubkey = &rsa_algorithm,
46         .cipher = &aes_cbc_algorithm,
47         .digest = &sha1_algorithm,
48 };