[][src]Trait asn1_der::traits::IntoDerEncoded

pub trait IntoDerEncoded {
    fn into_der_encoded(self) -> Vec<u8>;
}

A trait to convert native types into their DER-encoded representation

Required methods

fn into_der_encoded(self) -> Vec<u8>

Converts Self into their DER-encoded representation

Returns the DER-encoded data

Loading content...

Implementors

impl IntoDerEncoded for DerObject[src]

fn into_der_encoded(self) -> Vec<u8>[src]

DER-encodes this object

impl<T> IntoDerEncoded for T where
    T: IntoDerObject
[src]

Loading content...