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
use crate::{
asn1::Any, ByteSlice, DecodeValue, Decoder, EncodeValue, Encoder, Error, FixedTag, Length,
OrdIsValueOrd, Result, StrSlice, Tag,
};
use core::{fmt, str};
#[derive(Copy, Clone, Eq, PartialEq, PartialOrd, Ord)]
pub struct Ia5String<'a> {
inner: StrSlice<'a>,
}
impl<'a> Ia5String<'a> {
pub fn new<T>(input: &'a T) -> Result<Self>
where
T: AsRef<[u8]> + ?Sized,
{
let input = input.as_ref();
if input.iter().any(|&c| c > 0x7F) {
return Err(Self::TAG.value_error());
}
StrSlice::from_bytes(input)
.map(|inner| Self { inner })
.map_err(|_| Self::TAG.value_error())
}
pub fn as_str(&self) -> &'a str {
self.inner.as_str()
}
pub fn as_bytes(&self) -> &'a [u8] {
self.inner.as_bytes()
}
pub fn len(&self) -> Length {
self.inner.len()
}
pub fn is_empty(&self) -> bool {
self.inner.is_empty()
}
}
impl AsRef<str> for Ia5String<'_> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl AsRef<[u8]> for Ia5String<'_> {
fn as_ref(&self) -> &[u8] {
self.as_bytes()
}
}
impl<'a> DecodeValue<'a> for Ia5String<'a> {
fn decode_value(decoder: &mut Decoder<'a>, length: Length) -> Result<Self> {
Self::new(ByteSlice::decode_value(decoder, length)?.as_bytes())
}
}
impl EncodeValue for Ia5String<'_> {
fn value_len(&self) -> Result<Length> {
self.inner.value_len()
}
fn encode_value(&self, encoder: &mut Encoder<'_>) -> Result<()> {
self.inner.encode_value(encoder)
}
}
impl<'a> FixedTag for Ia5String<'a> {
const TAG: Tag = Tag::Ia5String;
}
impl OrdIsValueOrd for Ia5String<'_> {}
impl<'a> From<&Ia5String<'a>> for Ia5String<'a> {
fn from(value: &Ia5String<'a>) -> Ia5String<'a> {
*value
}
}
impl<'a> TryFrom<Any<'a>> for Ia5String<'a> {
type Error = Error;
fn try_from(any: Any<'a>) -> Result<Ia5String<'a>> {
any.decode_into()
}
}
impl<'a> From<Ia5String<'a>> for Any<'a> {
fn from(printable_string: Ia5String<'a>) -> Any<'a> {
Any::from_tag_and_value(Tag::Ia5String, printable_string.inner.into())
}
}
impl<'a> From<Ia5String<'a>> for &'a [u8] {
fn from(printable_string: Ia5String<'a>) -> &'a [u8] {
printable_string.as_bytes()
}
}
impl<'a> fmt::Display for Ia5String<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(self.as_str())
}
}
impl<'a> fmt::Debug for Ia5String<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Ia5String({:?})", self.as_str())
}
}
#[cfg(test)]
mod tests {
use super::Ia5String;
use crate::Decodable;
use hex_literal::hex;
#[test]
fn parse_bytes() {
let example_bytes = hex!("16 0d 74 65 73 74 31 40 72 73 61 2e 63 6f 6d");
let printable_string = Ia5String::from_der(&example_bytes).unwrap();
assert_eq!(printable_string.as_str(), "test1@rsa.com");
}
}