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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
/*
* PK Operations
* (C) 1999-2010 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/internal/default_engine.h>
#if defined(BOTAN_HAS_RSA)
#include <botan/if_op.h>
#include <botan/rsa.h>
#endif
#if defined(BOTAN_HAS_RW)
#include <botan/if_op.h>
#include <botan/rw.h>
#endif
#if defined(BOTAN_HAS_DSA)
#include <botan/dsa.h>
#endif
#if defined(BOTAN_HAS_ECDSA)
#include <botan/ecdsa.h>
#endif
#if defined(BOTAN_HAS_ELGAMAL)
#include <botan/elgamal.h>
#include <botan/elg_op.h>
#endif
#if defined(BOTAN_HAS_GOST_3410_2001)
#include <botan/gost_3410.h>
#endif
#if defined(BOTAN_HAS_NYBERG_RUEPPEL)
#include <botan/nr.h>
#endif
#if defined(BOTAN_HAS_DIFFIE_HELLMAN)
#include <botan/dh.h>
#endif
#if defined(BOTAN_HAS_ECDH)
#include <botan/ecdh.h>
#endif
namespace Botan {
PK_Ops::Key_Agreement*
Default_Engine::get_key_agreement_op(const Private_Key& key) const
{
#if defined(BOTAN_HAS_DIFFIE_HELLMAN)
if(const DH_PrivateKey* dh = dynamic_cast<const DH_PrivateKey*>(&key))
return new DH_KA_Operation(*dh);
#endif
#if defined(BOTAN_HAS_ECDH)
if(const ECDH_PrivateKey* ecdh = dynamic_cast<const ECDH_PrivateKey*>(&key))
return new ECDH_KA_Operation(*ecdh);
#endif
return 0;
}
PK_Ops::Signature*
Default_Engine::get_signature_op(const Private_Key& key) const
{
#if defined(BOTAN_HAS_RSA)
if(const RSA_PrivateKey* s = dynamic_cast<const RSA_PrivateKey*>(&key))
return new RSA_Signature_Operation(*s);
#endif
#if defined(BOTAN_HAS_RW)
if(const RW_PrivateKey* s = dynamic_cast<const RW_PrivateKey*>(&key))
return new RW_Signature_Operation(*s);
#endif
#if defined(BOTAN_HAS_DSA)
if(const DSA_PrivateKey* s = dynamic_cast<const DSA_PrivateKey*>(&key))
return new DSA_Signature_Operation(*s);
#endif
#if defined(BOTAN_HAS_ECDSA)
if(const ECDSA_PrivateKey* s = dynamic_cast<const ECDSA_PrivateKey*>(&key))
return new ECDSA_Signature_Operation(*s);
#endif
#if defined(BOTAN_HAS_GOST_3410_2001)
if(const GOST_3410_PrivateKey* s =
dynamic_cast<const GOST_3410_PrivateKey*>(&key))
return new GOST_3410_Signature_Operation(*s);
#endif
#if defined(BOTAN_HAS_NYBERG_RUEPPEL)
if(const NR_PrivateKey* s = dynamic_cast<const NR_PrivateKey*>(&key))
return new NR_Signature_Operation(*s);
#endif
return 0;
}
PK_Ops::Verification*
Default_Engine::get_verify_op(const Public_Key& key) const
{
#if defined(BOTAN_HAS_RSA)
if(const RSA_PublicKey* s = dynamic_cast<const RSA_PublicKey*>(&key))
return new RSA_Verification_Operation(*s);
#endif
#if defined(BOTAN_HAS_RW)
if(const RW_PublicKey* s = dynamic_cast<const RW_PublicKey*>(&key))
return new RW_Verification_Operation(*s);
#endif
#if defined(BOTAN_HAS_DSA)
if(const DSA_PublicKey* s = dynamic_cast<const DSA_PublicKey*>(&key))
return new DSA_Verification_Operation(*s);
#endif
#if defined(BOTAN_HAS_ECDSA)
if(const ECDSA_PublicKey* s = dynamic_cast<const ECDSA_PublicKey*>(&key))
return new ECDSA_Verification_Operation(*s);
#endif
#if defined(BOTAN_HAS_GOST_3410_2001)
if(const GOST_3410_PublicKey* s =
dynamic_cast<const GOST_3410_PublicKey*>(&key))
return new GOST_3410_Verification_Operation(*s);
#endif
#if defined(BOTAN_HAS_NYBERG_RUEPPEL)
if(const NR_PublicKey* s = dynamic_cast<const NR_PublicKey*>(&key))
return new NR_Verification_Operation(*s);
#endif
return 0;
}
#if defined(BOTAN_HAS_IF_PUBLIC_KEY_FAMILY)
/*
* Acquire an IF op
*/
IF_Operation* Default_Engine::if_op(const BigInt& e, const BigInt& n,
const BigInt& d, const BigInt& p,
const BigInt& q, const BigInt& d1,
const BigInt& d2, const BigInt& c) const
{
return new Default_IF_Op(e, n, d, p, q, d1, d2, c);
}
#endif
#if defined(BOTAN_HAS_ELGAMAL)
/*
* Acquire an ElGamal op
*/
ELG_Operation* Default_Engine::elg_op(const DL_Group& group, const BigInt& y,
const BigInt& x) const
{
return new Default_ELG_Op(group, y, x);
}
#endif
}
|