1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#include "tests.h"
#include "test_pubkey.h"
#include <botan/hex.h>
#include <iostream>
#include <fstream>
#if defined(BOTAN_HAS_DLIES)
#include <botan/auto_rng.h>
#include <botan/pubkey.h>
#include <botan/lookup.h>
#include <botan/dlies.h>
#include <botan/dh.h>
#endif
using namespace Botan;
#if defined(BOTAN_HAS_DLIES)
namespace {
size_t dlies_kat(const std::string& p,
const std::string& g,
const std::string& x1,
const std::string& x2,
const std::string& msg,
const std::string& ciphertext)
{
AutoSeeded_RNG rng;
BigInt p_bn(p);
BigInt g_bn(g);
BigInt x1_bn(x1);
BigInt x2_bn(x2);
DL_Group domain(p_bn, g_bn);
DH_PrivateKey from(rng, domain, x1_bn);
DH_PrivateKey to(rng, domain, x2_bn);
const std::string opt_str = "KDF2(SHA-1)/HMAC(SHA-1)/16";
std::vector<std::string> options = split_on(opt_str, '/');
if(options.size() != 3)
throw std::runtime_error("DLIES needs three options: " + opt_str);
const size_t mac_key_len = to_u32bit(options[2]);
DLIES_Encryptor e(from,
get_kdf(options[0]),
get_mac(options[1]),
mac_key_len);
DLIES_Decryptor d(to,
get_kdf(options[0]),
get_mac(options[1]),
mac_key_len);
e.set_other_key(to.public_value());
const std::string empty = "";
return validate_encryption(e, d, "DLIES", msg, empty, ciphertext);
}
}
#endif
size_t test_dlies()
{
size_t fails = 0;
#if defined(BOTAN_HAS_DLIES)
std::ifstream dlies(PK_TEST_DATA_DIR "/dlies.vec");
fails += run_tests_bb(dlies, "DLIES Encryption", "Ciphertext", true,
[](std::map<std::string, std::string> m) -> size_t
{
return dlies_kat(m["P"], m["G"], m["X1"], m["X2"], m["Msg"], m["Ciphertext"]);
});
#endif
return fails;
}
|