pub struct Asn1RawDer(pub Vec<u8>);
Expand description

User-provided raw DER wrapper.

Allow user to provide raw DER: no tag is added by serializer and bytes are bumped as it. Note that provided DER header has to be valid to determine length on deserialization.

Example

use picky_asn1_der::Asn1RawDer;
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize, PartialEq, Debug)]
struct A {
    number: u8,
    user_provided: Asn1RawDer,
}

let plain_a = A {
    number: 7,
    user_provided: Asn1RawDer(vec![
        0x30, 0x08,
            0x0C, 0x03, 0x41, 0x62, 0x63,
            0x02, 0x01, 0x05,
    ]),
};

let serialized_a = picky_asn1_der::to_vec(&plain_a).expect("A to vec");
assert_eq!(
    serialized_a,
    [
        0x30, 0x0D,
            0x02, 0x01, 0x07,
            0x30, 0x08,
                0x0C, 0x03, 0x41, 0x62, 0x63,
                0x02, 0x01, 0x05,
    ]
);

let deserialized_a = picky_asn1_der::from_bytes(&serialized_a).expect("A from bytes");
assert_eq!(plain_a, deserialized_a);

// we can deserialize into a compatible B structure.

#[derive(Deserialize, Debug, PartialEq)]
struct B {
    number: u8,
    tuple: (String, u8),
}

let plain_b = B { number: 7, tuple: ("Abc".to_owned(), 5) };
let deserialized_b: B = picky_asn1_der::from_bytes(&serialized_a).expect("B from bytes");
assert_eq!(deserialized_b, plain_b);

Tuple Fields§

§0: Vec<u8>

Implementations§

source§

impl Asn1RawDer

source

pub const NAME: &'static str = "Asn1RawDer"

Trait Implementations§

source§

impl Clone for Asn1RawDer

source§

fn clone(&self) -> Asn1RawDer

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Asn1RawDer

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Asn1RawDer

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Hash for Asn1RawDer

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<Asn1RawDer> for Asn1RawDer

source§

fn eq(&self, other: &Asn1RawDer) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Asn1RawDer> for Asn1RawDer

source§

fn partial_cmp(&self, other: &Asn1RawDer) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for Asn1RawDer

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for Asn1RawDer

source§

impl StructuralEq for Asn1RawDer

source§

impl StructuralPartialEq for Asn1RawDer

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,