-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathsequence.rs
More file actions
77 lines (63 loc) · 1.97 KB
/
sequence.rs
File metadata and controls
77 lines (63 loc) · 1.97 KB
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
//! The [`Sequence`] trait simplifies writing decoders/encoders which map ASN.1
//! `SEQUENCE`s to Rust structs.
use crate::{
BytesRef, DecodeValue, EncodeValue, Error, ErrorKind, FixedTag, Header, Length, Reader, Result,
Tag, Writer,
};
#[cfg(feature = "alloc")]
use alloc::boxed::Box;
/// Marker trait for ASN.1 `SEQUENCE`s.
///
/// This is mainly used for custom derive.
pub trait Sequence<'a>: DecodeValue<'a> + EncodeValue {}
impl<'a, S> FixedTag for S
where
S: Sequence<'a>,
{
const TAG: Tag = Tag::Sequence;
}
#[cfg(feature = "alloc")]
impl<'a, T> Sequence<'a> for Box<T> where T: Sequence<'a> {}
/// The [`SequenceRef`] type provides raw access to the octets which comprise a
/// DER-encoded `SEQUENCE`.
///
/// This is a zero-copy reference type which borrows from the input data.
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub struct SequenceRef<'a> {
/// Body of the `SEQUENCE`.
body: &'a BytesRef,
}
impl<'a> SequenceRef<'a> {
/// Create a new [`SequenceRef`] from the DER bytes of the inner value.
pub fn new(slice: &'a [u8]) -> Result<Self> {
BytesRef::new(slice)
.map(|body| Self { body })
.map_err(|_| ErrorKind::Length { tag: Self::TAG }.into())
}
/// Borrow the inner byte slice.
pub fn as_bytes(&self) -> &'a [u8] {
self.body.as_slice()
}
}
impl AsRef<[u8]> for SequenceRef<'_> {
fn as_ref(&self) -> &[u8] {
self.as_bytes()
}
}
impl<'a> DecodeValue<'a> for SequenceRef<'a> {
type Error = Error;
fn decode_value<R: Reader<'a>>(reader: &mut R, header: Header) -> Result<Self> {
Ok(Self {
body: <&'a BytesRef>::decode_value(reader, header)?,
})
}
}
impl EncodeValue for SequenceRef<'_> {
fn value_len(&self) -> Result<Length> {
Ok(self.body.len())
}
fn encode_value(&self, writer: &mut impl Writer) -> Result<()> {
self.body.encode_value(writer)
}
}
impl<'a> Sequence<'a> for SequenceRef<'a> {}