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
use crate::{
asn1::Any, ByteSlice, DecodeValue, Decoder, EncodeValue, Encoder, Error, ErrorKind, FixedTag,
Length, OrdIsValueOrd, Result, Tag,
};
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub struct OctetString<'a> {
inner: ByteSlice<'a>,
}
impl<'a> OctetString<'a> {
pub fn new(slice: &'a [u8]) -> Result<Self> {
ByteSlice::new(slice)
.map(|inner| Self { inner })
.map_err(|_| ErrorKind::Length { tag: Self::TAG }.into())
}
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<[u8]> for OctetString<'_> {
fn as_ref(&self) -> &[u8] {
self.as_bytes()
}
}
impl<'a> DecodeValue<'a> for OctetString<'a> {
fn decode_value(decoder: &mut Decoder<'a>, length: Length) -> Result<Self> {
Ok(Self {
inner: ByteSlice::decode_value(decoder, length)?,
})
}
}
impl EncodeValue for OctetString<'_> {
fn value_len(&self) -> Result<Length> {
self.inner.value_len()
}
fn encode_value(&self, encoder: &mut Encoder<'_>) -> Result<()> {
self.inner.encode_value(encoder)
}
}
impl FixedTag for OctetString<'_> {
const TAG: Tag = Tag::OctetString;
}
impl OrdIsValueOrd for OctetString<'_> {}
impl<'a> From<&OctetString<'a>> for OctetString<'a> {
fn from(value: &OctetString<'a>) -> OctetString<'a> {
*value
}
}
impl<'a> TryFrom<Any<'a>> for OctetString<'a> {
type Error = Error;
fn try_from(any: Any<'a>) -> Result<OctetString<'a>> {
any.decode_into()
}
}
impl<'a> From<OctetString<'a>> for Any<'a> {
fn from(octet_string: OctetString<'a>) -> Any<'a> {
Any::from_tag_and_value(Tag::OctetString, octet_string.inner)
}
}
impl<'a> From<OctetString<'a>> for &'a [u8] {
fn from(octet_string: OctetString<'a>) -> &'a [u8] {
octet_string.as_bytes()
}
}