iPXE
ecdhe_rsa_aes_cbc_sha1.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2024 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
24FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25FILE_SECBOOT ( PERMITTED );
26
27#include <byteswap.h>
28#include <ipxe/rsa.h>
29#include <ipxe/aes.h>
30#include <ipxe/sha1.h>
31#include <ipxe/sha256.h>
32#include <ipxe/tls.h>
33
34/** TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA cipher suite */
36tls_ecdhe_rsa_with_aes_128_cbc_sha __tls_cipher_suite ( 05 ) = {
38 .key_len = ( 128 / 8 ),
39 .fixed_iv_len = 0,
47};
48
49/** TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA cipher suite */
51tls_ecdhe_rsa_with_aes_256_cbc_sha __tls_cipher_suite ( 06 ) = {
53 .key_len = ( 256 / 8 ),
54 .fixed_iv_len = 0,
62};
#define SHA1_DIGEST_SIZE
Definition Tpm20.h:26
AES algorithm.
struct cipher_algorithm aes_cbc_algorithm
#define AES_BLOCKSIZE
AES blocksize.
Definition aes.h:16
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
#define htons(value)
Definition byteswap.h:136
struct pubkey_algorithm rsa_algorithm
RSA public-key algorithm.
Definition rsa.c:661
RSA public-key cryptography.
struct digest_algorithm sha1_algorithm
SHA-1 algorithm.
Definition sha1.c:258
SHA-1 algorithm.
struct digest_algorithm sha256_algorithm
SHA-256 algorithm.
Definition sha256.c:265
SHA-256 algorithm.
A TLS cipher suite.
Definition tls.h:200
uint8_t fixed_iv_len
Fixed initialisation vector length.
Definition tls.h:216
struct cipher_algorithm * cipher
Bulk encryption cipher algorithm.
Definition tls.h:206
struct pubkey_algorithm * pubkey
Public-key encryption algorithm.
Definition tls.h:204
uint8_t mac_len
MAC length.
Definition tls.h:220
uint8_t record_iv_len
Record initialisation vector length.
Definition tls.h:218
struct digest_algorithm * digest
MAC digest algorithm.
Definition tls.h:208
struct tls_key_exchange_algorithm * exchange
Key exchange algorithm.
Definition tls.h:202
struct digest_algorithm * handshake
Handshake digest algorithm (for TLSv1.2 and above)
Definition tls.h:210
struct tls_key_exchange_algorithm tls_ecdhe_exchange_algorithm
Ephemeral Elliptic Curve Diffie-Hellman key exchange algorithm.
Definition tls.c:1831
Transport Layer Security Protocol.
#define __tls_cipher_suite(pref)
Declare a TLS cipher suite.
Definition tls.h:228
#define TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
Definition tls.h:102
#define TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
Definition tls.h:103