blob: 538dfac38dcb2d67f7eb5bc9d9312633e6ea0dca (
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
|
/*************************************************
* DL Scheme Header File *
* (C) 1999-2007 The Botan Project *
*************************************************/
#ifndef BOTAN_DL_ALGO_H__
#define BOTAN_DL_ALGO_H__
#include <botan/dl_group.h>
#include <botan/x509_key.h>
#include <botan/pkcs8.h>
namespace Botan {
/*************************************************
* DL Public Key *
*************************************************/
class DL_Scheme_PublicKey : public virtual Public_Key
{
public:
bool check_key(bool) const;
const DL_Group& get_domain() const { return group; }
const BigInt& get_y() const { return y; }
const BigInt& group_p() const { return group.get_p(); }
const BigInt& group_q() const { return group.get_q(); }
const BigInt& group_g() const { return group.get_g(); }
virtual DL_Group::Format group_format() const = 0;
X509_Encoder* x509_encoder() const;
X509_Decoder* x509_decoder();
protected:
BigInt y;
DL_Group group;
private:
virtual void X509_load_hook() {}
};
/*************************************************
* DL Private Key *
*************************************************/
class DL_Scheme_PrivateKey : public virtual DL_Scheme_PublicKey,
public virtual Private_Key
{
public:
bool check_key(bool) const;
const BigInt& get_x() const { return x; }
PKCS8_Encoder* pkcs8_encoder() const;
PKCS8_Decoder* pkcs8_decoder();
protected:
BigInt x;
private:
virtual void PKCS8_load_hook(bool = false) {}
};
}
#endif
|