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
|
/*
* ASN.1 Internals
* (C) 1999-2007 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/asn1_obj.h>
#include <botan/der_enc.h>
#include <botan/data_src.h>
#include <botan/internal/stl_util.h>
namespace Botan {
/*
* Check a type invariant on BER data
*/
void BER_Object::assert_is_a(ASN1_Tag type_tag_, ASN1_Tag class_tag_,
const std::string& descr) const
{
if(this->is_a(type_tag_, class_tag_) == false)
{
throw BER_Decoding_Error("Tag mismatch when decoding " + descr + " got " +
std::to_string(type_tag) + "/" +
std::to_string(class_tag) + " expected " +
std::to_string(type_tag_) + "/" +
std::to_string(class_tag_));
}
}
bool BER_Object::is_a(ASN1_Tag type_tag_, ASN1_Tag class_tag_) const
{
return (type_tag == type_tag_ && class_tag == class_tag_);
}
bool BER_Object::is_a(int type_tag_, ASN1_Tag class_tag_) const
{
return is_a(ASN1_Tag(type_tag_), class_tag_);
}
void BER_Object::set_tagging(ASN1_Tag t, ASN1_Tag c)
{
type_tag = t;
class_tag = c;
}
std::string asn1_tag_to_string(ASN1_Tag type)
{
switch(type)
{
case Botan::SEQUENCE:
return "SEQUENCE";
case Botan::SET:
return "SET";
case Botan::PRINTABLE_STRING:
return "PRINTABLE STRING";
case Botan::NUMERIC_STRING:
return "NUMERIC STRING";
case Botan::IA5_STRING:
return "IA5 STRING";
case Botan::T61_STRING:
return "T61 STRING";
case Botan::UTF8_STRING:
return "UTF8 STRING";
case Botan::VISIBLE_STRING:
return "VISIBLE STRING";
case Botan::BMP_STRING:
return "BMP STRING";
case Botan::UTC_TIME:
return "UTC TIME";
case Botan::GENERALIZED_TIME:
return "GENERALIZED TIME";
case Botan::OCTET_STRING:
return "OCTET STRING";
case Botan::BIT_STRING:
return "BIT STRING";
case Botan::ENUMERATED:
return "ENUMERATED";
case Botan::INTEGER:
return "INTEGER";
case Botan::NULL_TAG:
return "NULL";
case Botan::OBJECT_ID:
return "OBJECT";
case Botan::BOOLEAN:
return "BOOLEAN";
default:
return "TAG(" + std::to_string(static_cast<size_t>(type)) + ")";
}
}
/*
* BER Decoding Exceptions
*/
BER_Decoding_Error::BER_Decoding_Error(const std::string& str) :
Decoding_Error("BER: " + str) {}
BER_Bad_Tag::BER_Bad_Tag(const std::string& str, ASN1_Tag tag) :
BER_Decoding_Error(str + ": " + std::to_string(tag)) {}
BER_Bad_Tag::BER_Bad_Tag(const std::string& str,
ASN1_Tag tag1, ASN1_Tag tag2) :
BER_Decoding_Error(str + ": " + std::to_string(tag1) + "/" + std::to_string(tag2)) {}
namespace ASN1 {
/*
* Put some arbitrary bytes into a SEQUENCE
*/
std::vector<uint8_t> put_in_sequence(const std::vector<uint8_t>& contents)
{
return ASN1::put_in_sequence(contents.data(), contents.size());
}
std::vector<uint8_t> put_in_sequence(const uint8_t bits[], size_t len)
{
return DER_Encoder()
.start_cons(SEQUENCE)
.raw_bytes(bits, len)
.end_cons()
.get_contents_unlocked();
}
/*
* Convert a BER object into a string object
*/
std::string to_string(const BER_Object& obj)
{
return std::string(cast_uint8_ptr_to_char(obj.bits()),
obj.length());
}
/*
* Do heuristic tests for BER data
*/
bool maybe_BER(DataSource& source)
{
uint8_t first_u8;
if(!source.peek_byte(first_u8))
{
BOTAN_ASSERT_EQUAL(source.read_byte(first_u8), 0, "Expected EOF");
throw Stream_IO_Error("ASN1::maybe_BER: Source was empty");
}
if(first_u8 == (SEQUENCE | CONSTRUCTED))
return true;
return false;
}
}
}
|