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
use bcder::{
decode::{Constructed, Source},
encode::{self, Values},
Tag, Utf8String,
};
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct PkiFreeText(Vec<Utf8String>);
impl PkiFreeText {
pub fn take_opt_from<S: Source>(cons: &mut Constructed<S>) -> Result<Option<Self>, S::Err> {
cons.take_opt_sequence(|cons| Self::from_sequence(cons))
}
pub fn take_from<S: Source>(cons: &mut Constructed<S>) -> Result<Self, S::Err> {
cons.take_sequence(|cons| Self::from_sequence(cons))
}
pub fn from_sequence<S: Source>(cons: &mut Constructed<S>) -> Result<Self, S::Err> {
let mut res = vec![];
while let Some(s) = cons.take_opt_value_if(Tag::UTF8_STRING, |content| {
Utf8String::from_content(content)
})? {
res.push(s);
}
Ok(Self(res))
}
pub fn encode_ref(&self) -> impl Values + '_ {
encode::sequence(encode::slice(&self.0, |x| x.clone().encode()))
}
}