blob: ccb8a05a0972db7838ea8c7451baf63086848113 (
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
65
66
67
|
/*************************************************
* DL Scheme Header File *
* (C) 1999-2006 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 X509_PublicKey
{
public:
bool check_key(bool) const;
const DL_Group& get_domain() const { return group; }
const BigInt& get_y() const { return y; }
virtual ~DL_Scheme_PublicKey() {}
protected:
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(); }
BigInt y;
DL_Group group;
private:
MemoryVector<byte> DER_encode_pub() const;
MemoryVector<byte> DER_encode_params() const;
void BER_decode_pub(DataSource&);
void BER_decode_params(DataSource&);
virtual DL_Group::Format group_format() const = 0;
virtual void X509_load_hook() {}
};
/*************************************************
* DL Private Key *
*************************************************/
class DL_Scheme_PrivateKey : public virtual DL_Scheme_PublicKey,
public virtual PKCS8_PrivateKey
{
public:
bool check_key(bool) const;
const BigInt& get_x() const { return x; }
virtual ~DL_Scheme_PrivateKey() {}
protected:
BigInt x;
private:
SecureVector<byte> DER_encode_priv() const;
void BER_decode_priv(DataSource&);
virtual void PKCS8_load_hook() {}
};
}
#endif
|