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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
use crate::{
asn1::Any, Choice, Decodable, DecodeValue, Decoder, DerOrd, Encodable, EncodeValue, Encoder,
Error, Header, Length, Result, Tag, TagMode, TagNumber, Tagged, ValueOrd,
};
use core::cmp::Ordering;
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub struct ContextSpecific<T> {
pub tag_number: TagNumber,
pub tag_mode: TagMode,
pub value: T,
}
impl<T> ContextSpecific<T> {
pub fn decode_explicit<'a>(
decoder: &mut Decoder<'a>,
tag_number: TagNumber,
) -> Result<Option<Self>>
where
T: Decodable<'a>,
{
Self::decode_with(decoder, tag_number, |decoder| {
let any = Any::decode(decoder)?;
if !any.tag().is_constructed() {
return Err(any.tag().non_canonical_error());
}
Self::try_from(any)
})
}
pub fn decode_implicit<'a>(
decoder: &mut Decoder<'a>,
tag_number: TagNumber,
) -> Result<Option<Self>>
where
T: DecodeValue<'a> + Tagged,
{
Self::decode_with(decoder, tag_number, |decoder| {
let header = Header::decode(decoder)?;
let value = T::decode_value(decoder, header.length)?;
if header.tag.is_constructed() != value.tag().is_constructed() {
return Err(header.tag.non_canonical_error());
}
Ok(Self {
tag_number,
tag_mode: TagMode::Implicit,
value,
})
})
}
fn decode_with<'a, F>(
decoder: &mut Decoder<'a>,
tag_number: TagNumber,
f: F,
) -> Result<Option<Self>>
where
F: FnOnce(&mut Decoder<'a>) -> Result<Self>,
{
while let Some(octet) = decoder.peek_byte() {
let tag = Tag::try_from(octet)?;
if !tag.is_context_specific() || (tag.number() > tag_number) {
break;
} else if tag.number() == tag_number {
return Some(f(decoder)).transpose();
} else {
decoder.any()?;
}
}
Ok(None)
}
pub fn to_ref(&self) -> ContextSpecificRef<'_, T> {
ContextSpecificRef {
tag_number: self.tag_number,
tag_mode: self.tag_mode,
value: &self.value,
}
}
}
impl<'a, T> Choice<'a> for ContextSpecific<T>
where
T: Decodable<'a> + Tagged,
{
fn can_decode(tag: Tag) -> bool {
tag.is_context_specific()
}
}
impl<'a, T> Decodable<'a> for ContextSpecific<T>
where
T: Decodable<'a>,
{
fn decode(decoder: &mut Decoder<'a>) -> Result<Self> {
Any::decode(decoder)?.try_into()
}
}
impl<T> EncodeValue for ContextSpecific<T>
where
T: EncodeValue + Tagged,
{
fn value_len(&self) -> Result<Length> {
self.to_ref().value_len()
}
fn encode_value(&self, encoder: &mut Encoder<'_>) -> Result<()> {
self.to_ref().encode_value(encoder)
}
}
impl<T> Tagged for ContextSpecific<T>
where
T: Tagged,
{
fn tag(&self) -> Tag {
self.to_ref().tag()
}
}
impl<T> ValueOrd for ContextSpecific<T>
where
T: EncodeValue + ValueOrd + Tagged,
{
fn value_cmp(&self, other: &Self) -> Result<Ordering> {
self.to_ref().value_cmp(&other.to_ref())
}
}
impl<'a, T> TryFrom<Any<'a>> for ContextSpecific<T>
where
T: Decodable<'a>,
{
type Error = Error;
fn try_from(any: Any<'a>) -> Result<ContextSpecific<T>> {
match any.tag() {
Tag::ContextSpecific {
number,
constructed: true,
} => Ok(Self {
tag_number: number,
tag_mode: TagMode::default(),
value: T::from_der(any.value())?,
}),
tag => Err(tag.unexpected_error(None)),
}
}
}
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub struct ContextSpecificRef<'a, T> {
pub tag_number: TagNumber,
pub tag_mode: TagMode,
pub value: &'a T,
}
impl<T> EncodeValue for ContextSpecificRef<'_, T>
where
T: EncodeValue + Tagged,
{
fn value_len(&self) -> Result<Length> {
match self.tag_mode {
TagMode::Explicit => self.value.encoded_len(),
TagMode::Implicit => self.value.value_len(),
}
}
fn encode_value(&self, encoder: &mut Encoder<'_>) -> Result<()> {
match self.tag_mode {
TagMode::Explicit => self.value.encode(encoder),
TagMode::Implicit => self.value.encode_value(encoder),
}
}
}
impl<T> Tagged for ContextSpecificRef<'_, T>
where
T: Tagged,
{
fn tag(&self) -> Tag {
let constructed = match self.tag_mode {
TagMode::Explicit => true,
TagMode::Implicit => self.value.tag().is_constructed(),
};
Tag::ContextSpecific {
number: self.tag_number,
constructed,
}
}
}
impl<T> ValueOrd for ContextSpecificRef<'_, T>
where
T: EncodeValue + ValueOrd + Tagged,
{
fn value_cmp(&self, other: &Self) -> Result<Ordering> {
match self.tag_mode {
TagMode::Explicit => self.der_cmp(other),
TagMode::Implicit => self.value_cmp(other),
}
}
}
#[cfg(test)]
mod tests {
use super::ContextSpecific;
use crate::{asn1::BitString, Decodable, Decoder, Encodable, TagMode, TagNumber};
use hex_literal::hex;
const EXAMPLE_BYTES: &[u8] =
&hex!("A123032100A3A7EAE3A8373830BC47E1167BC50E1DB551999651E0E2DC587623438EAC3F31");
#[test]
fn round_trip() {
let field = ContextSpecific::<BitString<'_>>::from_der(EXAMPLE_BYTES).unwrap();
assert_eq!(field.tag_number.value(), 1);
assert_eq!(
field.value,
BitString::from_bytes(&EXAMPLE_BYTES[5..]).unwrap()
);
let mut buf = [0u8; 128];
let encoded = field.encode_to_slice(&mut buf).unwrap();
assert_eq!(encoded, EXAMPLE_BYTES);
}
#[test]
fn context_specific_with_explicit_field() {
let tag_number = TagNumber::new(0);
let mut decoder = Decoder::new(&[]).unwrap();
assert_eq!(
ContextSpecific::<u8>::decode_explicit(&mut decoder, tag_number).unwrap(),
None
);
let mut decoder = Decoder::new(&hex!("020100")).unwrap();
assert_eq!(
ContextSpecific::<u8>::decode_explicit(&mut decoder, tag_number).unwrap(),
None
);
let mut decoder = Decoder::new(&hex!("A003020100")).unwrap();
let field = ContextSpecific::<u8>::decode_explicit(&mut decoder, tag_number)
.unwrap()
.unwrap();
assert_eq!(field.tag_number, tag_number);
assert_eq!(field.tag_mode, TagMode::Explicit);
assert_eq!(field.value, 0);
}
#[test]
fn context_specific_with_implicit_field() {
let context_specific_implicit_bytes =
hex!("81210019BF44096984CDFE8541BAC167DC3B96C85086AA30B6B6CB0C5C38AD703166E1");
let tag_number = TagNumber::new(1);
let mut decoder = Decoder::new(&context_specific_implicit_bytes).unwrap();
let field = ContextSpecific::<BitString<'_>>::decode_implicit(&mut decoder, tag_number)
.unwrap()
.unwrap();
assert_eq!(field.tag_number, tag_number);
assert_eq!(field.tag_mode, TagMode::Implicit);
assert_eq!(
field.value.as_bytes().unwrap(),
&context_specific_implicit_bytes[3..]
);
}
#[test]
fn context_specific_skipping_unknown_field() {
let tag = TagNumber::new(1);
let mut decoder = Decoder::new(&hex!("A003020100A103020101")).unwrap();
let field = ContextSpecific::<u8>::decode_explicit(&mut decoder, tag)
.unwrap()
.unwrap();
assert_eq!(field.value, 1);
}
#[test]
fn context_specific_returns_none_on_greater_tag_number() {
let tag = TagNumber::new(0);
let mut decoder = Decoder::new(&hex!("A103020101")).unwrap();
assert_eq!(
ContextSpecific::<u8>::decode_explicit(&mut decoder, tag).unwrap(),
None
);
}
}