blob: 8ef15280b989ef219793aac3bd9d1919bec3af58 (
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
|
/*************************************************
* Exceptions Header File *
* (C) 1999-2008 The Botan Project *
*************************************************/
#ifndef BOTAN_EXCEPTION_H__
#define BOTAN_EXCEPTION_H__
#include <botan/types.h>
#include <exception>
#include <string>
namespace Botan {
/*************************************************
* Exception Base Class *
*************************************************/
class Exception : public std::exception
{
public:
const char* what() const throw() { return msg.c_str(); }
Exception(const std::string& m = "Unknown error") { set_msg(m); }
virtual ~Exception() throw() {}
protected:
void set_msg(const std::string& m) { msg = "Botan: " + m; }
private:
std::string msg;
};
/*************************************************
* Invalid_Argument Exception *
*************************************************/
struct Invalid_Argument : public Exception
{
Invalid_Argument(const std::string& err = "") : Exception(err) {}
};
/*************************************************
* Invalid_Key_Length Exception *
*************************************************/
struct Invalid_Key_Length : public Invalid_Argument
{
Invalid_Key_Length(const std::string&, u32bit);
};
/*************************************************
* Invalid_Block_Size Exception *
*************************************************/
struct Invalid_Block_Size : public Invalid_Argument
{
Invalid_Block_Size(const std::string&, const std::string&);
};
/*************************************************
* Invalid_IV_Length Exception *
*************************************************/
struct Invalid_IV_Length : public Invalid_Argument
{
Invalid_IV_Length(const std::string&, u32bit);
};
/*************************************************
* Invalid_Message_Number Exception *
*************************************************/
struct Invalid_Message_Number : public Invalid_Argument
{
Invalid_Message_Number(const std::string&, u32bit);
};
/*************************************************
* Invalid_State Exception *
*************************************************/
struct Invalid_State : public Exception
{
Invalid_State(const std::string& err) : Exception(err) {}
};
/*************************************************
* PRNG_Unseeded Exception *
*************************************************/
struct PRNG_Unseeded : public Invalid_State
{
PRNG_Unseeded(const std::string& algo) :
Invalid_State("PRNG not seeded: " + algo) {}
};
/*************************************************
* Policy_Violation Exception *
*************************************************/
struct Policy_Violation : public Invalid_State
{
Policy_Violation(const std::string& err) :
Invalid_State("Policy violation: " + err) {}
};
/*************************************************
* Lookup_Error Exception *
*************************************************/
struct Lookup_Error : public Exception
{
Lookup_Error(const std::string& err) : Exception(err) {}
};
/*************************************************
* Algorithm_Not_Found Exception *
*************************************************/
struct Algorithm_Not_Found : public Exception
{
Algorithm_Not_Found(const std::string&);
};
/*************************************************
* Format_Error Exception *
*************************************************/
struct Format_Error : public Exception
{
Format_Error(const std::string& err = "") : Exception(err) {}
};
/*************************************************
* Invalid_Algorithm_Name Exception *
*************************************************/
struct Invalid_Algorithm_Name : public Format_Error
{
Invalid_Algorithm_Name(const std::string&);
};
/*************************************************
* Encoding_Error Exception *
*************************************************/
struct Encoding_Error : public Format_Error
{
Encoding_Error(const std::string& name) :
Format_Error("Encoding error: " + name) {}
};
/*************************************************
* Decoding_Error Exception *
*************************************************/
struct Decoding_Error : public Format_Error
{
Decoding_Error(const std::string& name) :
Format_Error("Decoding error: " + name) {}
};
/*************************************************
* Invalid_OID Exception *
*************************************************/
struct Invalid_OID : public Decoding_Error
{
Invalid_OID(const std::string& oid) :
Decoding_Error("Invalid ASN.1 OID: " + oid) {}
};
/*************************************************
* Stream_IO_Error Exception *
*************************************************/
struct Stream_IO_Error : public Exception
{
Stream_IO_Error(const std::string& err) :
Exception("I/O error: " + err) {}
};
/*************************************************
* Configuration Error Exception *
*************************************************/
struct Config_Error : public Format_Error
{
Config_Error(const std::string& err) :
Format_Error("Config error: " + err) {}
Config_Error(const std::string&, u32bit);
};
/*************************************************
* Integrity Failure Exception *
*************************************************/
struct Integrity_Failure : public Exception
{
Integrity_Failure(const std::string& err) :
Exception("Integrity failure: " + err) {}
};
/*************************************************
* Internal_Error Exception *
*************************************************/
struct Internal_Error : public Exception
{
Internal_Error(const std::string& err) :
Exception("Internal error: " + err) {}
};
/*************************************************
* Self Test Failure Exception *
*************************************************/
struct Self_Test_Failure : public Internal_Error
{
Self_Test_Failure(const std::string& err) :
Internal_Error("Self test failed: " + err) {}
};
/*************************************************
* Memory Allocation Exception *
*************************************************/
struct Memory_Exhaustion : public Exception
{
Memory_Exhaustion() :
Exception("Ran out of memory, allocation failed") {}
};
}
#endif
|