aboutsummaryrefslogtreecommitdiffstats
path: root/src/get_enc.cpp
blob: 8137f464509f9b9fc71131526953fd5956322e77 (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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*************************************************
* EMSA/EME/KDF/MGF Retrieval Source File         *
* (C) 1999-2007 Jack Lloyd                       *
*************************************************/

#include <botan/lookup.h>
#include <botan/libstate.h>
#include <botan/parsing.h>
#include <botan/mgf1.h>
#include <botan/util.h>

#ifdef BOTAN_HAS_EMSA1
   #include <botan/emsa1.h>
#endif

#ifdef BOTAN_HAS_EMSA2
   #include <botan/emsa2.h>
#endif

#ifdef BOTAN_HAS_EMSA3
   #include <botan/emsa3.h>
#endif

#ifdef BOTAN_HAS_EMSA4
   #include <botan/emsa4.h>
#endif

#ifdef BOTAN_HAS_EMSA_RAW
   #include <botan/emsa_raw.h>
#endif

#ifdef BOTAN_HAS_EME1
   #include <botan/eme1.h>
#endif

#ifdef BOTAN_HAS_EME_PKCS1v15
   #include <botan/eme_pkcs.h>
#endif

#ifdef BOTAN_HAS_KDF1
   #include <botan/kdf1.h>
#endif

#ifdef BOTAN_HAS_KDF2
   #include <botan/kdf2.h>
#endif

#ifdef BOTAN_HAS_X942_PRF
   #include <botan/prf_x942.h>
#endif

#ifdef BOTAN_HAS_SSL_V3_PRF
   #include <botan/prf_ssl3.h>
#endif

#ifdef BOTAN_HAS_TLS_V10_PRF
   #include <botan/prf_tls.h>
#endif

namespace Botan {

/*************************************************
* Get an EMSA by name                            *
*************************************************/
EMSA* get_emsa(const std::string& algo_spec)
   {
   std::vector<std::string> name = parse_algorithm_name(algo_spec);
   const std::string emsa_name = global_state().deref_alias(name[0]);

#ifdef BOTAN_HAS_EMSA_RAW
   if(emsa_name == "Raw")
      {
      if(name.size() == 1)
         return new EMSA_Raw;
      }
#endif

#ifdef BOTAN_HAS_EMSA1
   if(emsa_name == "EMSA1")
      {
      if(name.size() == 2)
         return new EMSA1(name[1]);
      }
#endif

#ifdef BOTAN_HAS_EMSA2
   if(emsa_name == "EMSA2")
      {
      if(name.size() == 2)
         return new EMSA2(name[1]);
      }
#endif

#ifdef BOTAN_HAS_EMSA3
   if(emsa_name == "EMSA3")
      {
      if(name.size() == 2)
         return new EMSA3(name[1]);
      }
#endif

#ifdef BOTAN_HAS_EMSA4
   if(emsa_name == "EMSA4")
      {
      if(name.size() == 2)
         return new EMSA4(name[1], "MGF1");
      if(name.size() == 3)
         return new EMSA4(name[1], name[2]);
      if(name.size() == 4)
         return new EMSA4(name[1], name[2], to_u32bit(name[3]));
      }
#endif

   throw Algorithm_Not_Found(algo_spec);
   }

/*************************************************
* Get an EME by name                             *
*************************************************/
EME* get_eme(const std::string& algo_spec)
   {
   std::vector<std::string> name = parse_algorithm_name(algo_spec);
   const std::string eme_name = global_state().deref_alias(name[0]);

#ifdef BOTAN_HAS_EME_PKCS1v15
   if(eme_name == "PKCS1v15")
      {
      if(name.size() == 1)
         return new EME_PKCS1v15;
      }
#endif

#ifdef BOTAN_HAS_EME1
   if(eme_name == "EME1")
      {
      if(name.size() == 2)
         return new EME1(name[1], "MGF1");
      if(name.size() == 3)
         return new EME1(name[1], name[2]);
      }
#endif

   throw Algorithm_Not_Found(algo_spec);
   }

/*************************************************
* Get an KDF by name                             *
*************************************************/
KDF* get_kdf(const std::string& algo_spec)
   {
   std::vector<std::string> name = parse_algorithm_name(algo_spec);
   const std::string kdf_name = global_state().deref_alias(name[0]);

#ifdef BOTAN_HAS_KDF1
   if(kdf_name == "KDF1")
      {
      if(name.size() == 2)
         return new KDF1(name[1]);
      }
#endif

#ifdef BOTAN_HAS_KDF2
   if(kdf_name == "KDF2")
      {
      if(name.size() == 2)
         return new KDF2(name[1]);
      }
#endif

#ifdef BOTAN_HAS_X942_PRF
   if(kdf_name == "X9.42-PRF")
      {
      if(name.size() == 2)
         return new X942_PRF(name[1]);
      }
#endif

#ifdef BOTAN_HAS_TLS_V10_PRF
   if(kdf_name == "TLS-PRF")
      {
      if(name.size() == 1)
         return new TLS_PRF;
      }
#endif

#ifdef BOTAN_HAS_SSL_V3_PRF
   if(kdf_name == "SSL3-PRF")
      {
      if(name.size() == 1)
         return new SSL3_PRF;
      }
#endif

   throw Algorithm_Not_Found(algo_spec);
   }

/*************************************************
* Get a MGF by name                              *
*************************************************/
MGF* get_mgf(const std::string& algo_spec)
   {
   std::vector<std::string> name = parse_algorithm_name(algo_spec);
   const std::string mgf_name = global_state().deref_alias(name[0]);

   if(mgf_name == "MGF1")
      {
      if(name.size() == 2)
         return new MGF1(get_hash(name[1]));
      }

   throw Algorithm_Not_Found(algo_spec);
   }

}