aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/tests.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2022-10-04 15:03:28 +0100
committerMichael Brown <mcb30@ipxe.org>2022-10-11 14:33:19 +0100
commit18b861024ad542bd6df337dfb10a84e04173040f (patch)
treedcfb83b24ab695cadf7173ad2348e094c12c8df0 /src/tests/tests.c
parent007d3cb800fd0e4b01be8a76f0cce2c795cfc89b (diff)
downloadipxe-18b861024ad542bd6df337dfb10a84e04173040f.tar.gz
[crypto] Add Ephemeral Diffie-Hellman key exchange algorithm
Add an implementation of the Ephemeral Diffie-Hellman key exchange algorithm as defined in RFC2631, with test vectors taken from the NIST Cryptographic Toolkit. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/tests/tests.c')
-rw-r--r--src/tests/tests.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tests/tests.c b/src/tests/tests.c
index dde1b2323..54694fa45 100644
--- a/src/tests/tests.c
+++ b/src/tests/tests.c
@@ -78,3 +78,4 @@ REQUIRE_OBJECT ( gzip_test );
REQUIRE_OBJECT ( utf8_test );
REQUIRE_OBJECT ( acpi_test );
REQUIRE_OBJECT ( hmac_test );
+REQUIRE_OBJECT ( dhe_test );