aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_dh.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-01-10 23:07:16 +0000
committerlloyd <[email protected]>2014-01-10 23:07:16 +0000
commitad6555f522ae16f6284e8dafa02f630b88bcf289 (patch)
treebd63c51dbeab75eb0f90c72589bc922141237056 /src/tests/test_dh.cpp
parent6894dca64c04936d07048c0e8cbf7e25858548c3 (diff)
Split up docs into the reference manual, the website, and everything else.
Add `website` target to makefile. Some progress towards fixing minimized builds. TLS now hard requires ECDSA and GCM since otherwise a minimized build has only insecure options. Remove boost_thread dependency in command line tool
Diffstat (limited to 'src/tests/test_dh.cpp')
-rw-r--r--src/tests/test_dh.cpp60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/tests/test_dh.cpp b/src/tests/test_dh.cpp
new file mode 100644
index 000000000..890bae632
--- /dev/null
+++ b/src/tests/test_dh.cpp
@@ -0,0 +1,60 @@
+#include "tests.h"
+#include "test_pubkey.h"
+
+#include <botan/auto_rng.h>
+#include <botan/pubkey.h>
+#include <botan/dh.h>
+#include <botan/hex.h>
+#include <iostream>
+#include <fstream>
+
+using namespace Botan;
+
+namespace {
+
+size_t dh_sig_kat(const std::string& p,
+ const std::string& g,
+ const std::string& x,
+ const std::string& y,
+ std::string kdf,
+ const std::string& outlen,
+ const std::string& key)
+ {
+ AutoSeeded_RNG rng;
+
+ BigInt p_bn(p), g_bn(g), x_bn(x), y_bn(y);
+
+ DL_Group domain(p_bn, g_bn);
+
+ DH_PrivateKey mykey(rng, domain, x_bn);
+ DH_PublicKey otherkey(domain, y_bn);
+
+ if(kdf == "")
+ kdf = "Raw";
+
+ size_t keylen = 0;
+ if(outlen != "")
+ keylen = to_u32bit(outlen);
+
+ PK_Key_Agreement kas(mykey, kdf);
+
+ return validate_kas(kas, "DH/" + kdf, otherkey.public_value(), key, keylen);
+ }
+
+}
+
+size_t test_dh()
+ {
+ std::ifstream dh_sig(PK_TEST_DATA_DIR "/dh.vec");
+
+ size_t fails = 0;
+
+ fails += run_tests_bb(dh_sig, "DH Kex", "K", true,
+ [](std::map<std::string, std::string> m) -> size_t
+ {
+ return dh_sig_kat(m["P"], m["G"], m["X"], m["Y"], m["KDF"], m["OutLen"], m["K"]);
+ });
+
+ return fails;
+ }
+