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
|
/*
* (C) 2014,2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "tests.h"
#include "test_pubkey.h"
#if defined(BOTAN_HAS_GOST_34_10_2001)
#include <botan/pubkey.h>
#include <botan/gost_3410.h>
#include <botan/oids.h>
#include <botan/hex.h>
#include <iostream>
#include <fstream>
using namespace Botan;
namespace {
size_t gost_verify(const std::string& group_id,
const std::string& x,
const std::string& hash,
const std::string& msg,
const std::string& signature)
{
EC_Group group(OIDS::lookup(group_id));
PointGFp public_point = OS2ECP(hex_decode(x), group.get_curve());
GOST_3410_PublicKey gost(group, public_point);
const std::string padding = "EMSA1(" + hash + ")";
PK_Verifier v(gost, padding);
if(!v.verify_message(hex_decode(msg), hex_decode(signature)))
return 1;
return 0;
}
}
#endif
size_t test_gost_3410()
{
size_t fails = 0;
#if defined(BOTAN_HAS_GOST_34_10_2001)
std::ifstream ecdsa_sig(PK_TEST_DATA_DIR "/gost_3410.vec");
fails += run_tests_bb(ecdsa_sig, "GOST-34.10 Signature", "Signature", true,
[](std::map<std::string, std::string> m) -> size_t
{
return gost_verify(m["Group"], m["Pubkey"], m["Hash"], m["Msg"], m["Signature"]);
});
#endif
return fails;
}
|