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
|
/*
* (C) 2014,2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "tests.h"
#include "test_pubkey.h"
#include <botan/hex.h>
#include <iostream>
#include <fstream>
#if defined(BOTAN_HAS_ELGAMAL)
#include <botan/elgamal.h>
#include <botan/pubkey.h>
#include <botan/dl_group.h>
#endif
using namespace Botan;
#if defined(BOTAN_HAS_ELGAMAL)
namespace {
size_t elgamal_kat(const std::string& p,
const std::string& g,
const std::string& x,
const std::string& msg,
std::string padding,
const std::string& nonce,
const std::string& ciphertext)
{
auto& rng = test_rng();
const BigInt p_bn = BigInt(p);
const BigInt g_bn = BigInt(g);
const BigInt x_bn = BigInt(x);
DL_Group group(p_bn, g_bn);
ElGamal_PrivateKey privkey(rng, group, x_bn);
ElGamal_PublicKey pubkey = privkey;
if(padding == "")
padding = "Raw";
PK_Encryptor_EME enc(pubkey, padding);
PK_Decryptor_EME dec(privkey, padding);
return validate_encryption(enc, dec, "ElGamal/" + padding, msg, nonce, ciphertext);
}
}
#endif
size_t test_elgamal()
{
size_t fails = 0;
#if defined(BOTAN_HAS_ELGAMAL)
std::ifstream elgamal_enc(PK_TEST_DATA_DIR "/elgamal.vec");
fails += run_tests_bb(elgamal_enc, "ElGamal Encryption", "Ciphertext", true,
[](std::map<std::string, std::string> m) -> size_t
{
return elgamal_kat(m["P"], m["G"], m["X"], m["Msg"],
m["Padding"], m["Nonce"], m["Ciphertext"]);
});
#endif
return fails;
}
|