summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/tls.h
diff options
context:
space:
mode:
authorMichael Brown2022-10-11 14:55:56 +0200
committerMichael Brown2022-10-11 16:42:11 +0200
commit6b2c94d3a7d93a8fc47fcb0b895477d4dafca5f0 (patch)
treea98899be26e7831420de305a4a656e36a7e76447 /src/include/ipxe/tls.h
parent[tls] Add key exchange mechanism to definition of cipher suite (diff)
downloadipxe-6b2c94d3a7d93a8fc47fcb0b895477d4dafca5f0.tar.gz
ipxe-6b2c94d3a7d93a8fc47fcb0b895477d4dafca5f0.tar.xz
ipxe-6b2c94d3a7d93a8fc47fcb0b895477d4dafca5f0.zip
[tls] Add support for Ephemeral Diffie-Hellman key exchange
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/tls.h')
-rw-r--r--src/include/ipxe/tls.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/ipxe/tls.h b/src/include/ipxe/tls.h
index 80cdd12fe..6d6c82de0 100644
--- a/src/include/ipxe/tls.h
+++ b/src/include/ipxe/tls.h
@@ -403,6 +403,7 @@ struct tls_connection {
#define TLS_RX_ALIGN 16
extern struct tls_key_exchange_algorithm tls_pubkey_exchange_algorithm;
+extern struct tls_key_exchange_algorithm tls_dhe_exchange_algorithm;
extern int add_tls ( struct interface *xfer, const char *name,
struct x509_root *root, struct private_key *key );