blob: 3a492ccf4a290a5501af88edf8909115420227f2 (
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
58
59
60
61
62
63
64
|
/*
* ECDSA Operations
* (C) 1999-2008 Jack Lloyd
* (C) 2007 FlexSecure GmbH
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_ECDSA_OPERATIONS_H__
#define BOTAN_ECDSA_OPERATIONS_H__
#include <botan/ec_dompar.h>
#include <botan/reducer.h>
namespace Botan {
/*
* ECDSA Operation
*/
class BOTAN_DLL ECDSA_Operation
{
public:
virtual bool verify(const byte msg[], u32bit msg_len,
const byte sig[], u32bit sig_len) const = 0;
virtual SecureVector<byte> sign(const byte msg[], u32bit msg_len,
const BigInt& k) const = 0;
virtual ECDSA_Operation* clone() const = 0;
virtual ~ECDSA_Operation() {}
};
/*
* Default ECDSA operation
*/
class BOTAN_DLL Default_ECDSA_Op : public ECDSA_Operation
{
public:
bool verify(const byte sig[], u32bit sig_len,
const byte msg[], u32bit msg_len) const;
SecureVector<byte> sign(const byte msg[], u32bit msg_len,
const BigInt& k) const;
ECDSA_Operation* clone() const
{
return new Default_ECDSA_Op(*this);
}
Default_ECDSA_Op(const EC_Domain_Params& dom_pars,
const BigInt& priv_key,
const PointGFp& pub_key);
private:
EC_Domain_Params dom_pars;
Modular_Reducer mod_n;
PointGFp pub_key;
BigInt priv_key;
};
}
#endif
|