diff options
author | Michael Brown <mcb30@ipxe.org> | 2024-01-30 17:42:16 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2024-01-31 12:34:20 +0000 |
commit | 963ec1c4f379a49cf37d01472a770fff8e47470c (patch) | |
tree | 0b0db3e42be95a49deac9d4361a94fdb671d6527 /src/config/crypto.h | |
parent | 8f6a9399b3dc5af227cbd6185eff077b6e9d0e37 (diff) | |
download | ipxe-963ec1c4f379a49cf37d01472a770fff8e47470c.tar.gz |
[tls] Add ECDHE cipher suites
Add ECDHE variants of the existing cipher suites, and lower the
priority of the non-ECDHE variants.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/crypto.h')
-rw-r--r-- | src/config/crypto.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/crypto.h b/src/config/crypto.h index ccf22df6b..589c4f0da 100644 --- a/src/config/crypto.h +++ b/src/config/crypto.h @@ -18,6 +18,9 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); /** DHE key exchange algorithm */ #define CRYPTO_EXCHANGE_DHE +/** ECDHE key exchange algorithm */ +#define CRYPTO_EXCHANGE_ECDHE + /** RSA public-key algorithm */ #define CRYPTO_PUBKEY_RSA |