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
|
/*
* DSA Core
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/dsa_core.h>
#include <botan/numthry.h>
#include <botan/engine.h>
#include <botan/parsing.h>
#include <algorithm>
namespace Botan {
namespace {
const u32bit BLINDING_BITS = BOTAN_PRIVATE_KEY_OP_BLINDING_BITS;
}
/*
* DSA_Core Constructor
*/
DSA_Core::DSA_Core(const DL_Group& group, const BigInt& y, const BigInt& x)
{
op = Engine_Core::dsa_op(group, y, x);
}
/*
* DSA_Core Copy Constructor
*/
DSA_Core::DSA_Core(const DSA_Core& core)
{
op = 0;
if(core.op)
op = core.op->clone();
}
/*
* DSA_Core Assignment Operator
*/
DSA_Core& DSA_Core::operator=(const DSA_Core& core)
{
delete op;
if(core.op)
op = core.op->clone();
return (*this);
}
/*
* DSA Verification Operation
*/
bool DSA_Core::verify(const byte msg[], u32bit msg_length,
const byte sig[], u32bit sig_length) const
{
return op->verify(msg, msg_length, sig, sig_length);
}
/*
* DSA Signature Operation
*/
SecureVector<byte> DSA_Core::sign(const byte in[], u32bit length,
const BigInt& k) const
{
return op->sign(in, length, k);
}
}
|