[][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...

Implementations on Foreign Types

impl IntoDerEncoded for ()[src]

impl IntoDerEncoded for bool[src]

impl IntoDerEncoded for Vec<u8>[src]

impl IntoDerEncoded for String[src]

impl IntoDerEncoded for u64[src]

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

Loading content...

Implementors

impl IntoDerEncoded for DerObject[src]

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

DER-encodes this object

Loading content...