aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_nr.cpp
blob: 7e038542d049d6fa22d5e2e6ff670415da438b60 (plain)
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
#include "tests.h"
#include "test_pubkey.h"

#include <botan/auto_rng.h>
#include <botan/pubkey.h>
#include <botan/nr.h>
#include <botan/hex.h>
#include <iostream>
#include <fstream>

using namespace Botan;

namespace {

size_t nr_sig_kat(const std::string& p,
                   const std::string& q,
                   const std::string& g,
                   const std::string& x,
                   const std::string& hash,
                   const std::string& msg,
                   const std::string& nonce,
                   const std::string& signature)
   {
   AutoSeeded_RNG rng;

   BigInt p_bn(p), q_bn(q), g_bn(g), x_bn(x);

   DL_Group group(p_bn, q_bn, g_bn);
   NR_PrivateKey privkey(rng, group, x_bn);

   NR_PublicKey pubkey = privkey;

   const std::string padding = "EMSA1(" + hash + ")";

   PK_Verifier verify(pubkey, padding);
   PK_Signer sign(privkey, padding);

   return validate_signature(verify, sign, "nr/" + hash, msg, nonce, signature);
   }

}

size_t test_nr()
   {
   std::ifstream nr_sig(TEST_DATA_DIR "/nr.vec");

   size_t fails = 0;

   fails += run_tests_bb(nr_sig, "NR Signature", "Signature", true,
             [](std::map<std::string, std::string> m) -> size_t
             {
             return nr_sig_kat(m["P"], m["Q"], m["G"], m["X"], m["Hash"], m["Msg"], m["Nonce"], m["Signature"]);
             });

   return fails;
   }