iPXE
ecdhe_ecdsa_aes_cbc_sha384.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2025 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/ecdsa.h>
29#include <ipxe/aes.h>
30#include <ipxe/sha512.h>
31#include <ipxe/tls.h>
32
33/** TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 cipher suite */
35tls_ecdhe_ecdsa_with_aes_256_cbc_sha384 __tls_cipher_suite ( 04 ) = {
37 .key_len = ( 256 / 8 ),
38 .fixed_iv_len = 0,
46};
#define SHA384_DIGEST_SIZE
Definition Tpm20.h:34
AES algorithm.
struct cipher_algorithm aes_cbc_algorithm
#define AES_BLOCKSIZE
AES blocksize.
Definition aes.h:16
struct pubkey_algorithm ecdsa_algorithm
ECDSA public-key algorithm.
Definition ecdsa.c:937
Elliptic curve digital signature algorithm (ECDSA)
#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 digest_algorithm sha384_algorithm
SHA-384 algorithm.
Definition sha384.c:64
SHA-512 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_ECDSA_WITH_AES_256_CBC_SHA384
Definition tls.h:105