[][src]Struct rcgen::Certificate

pub struct Certificate { /* fields omitted */ }

A self signed certificate together with signing keys

Methods

impl Certificate[src]

pub fn from_params(params: CertificateParams) -> Self[src]

Generates a new self-signed certificate from the given parameters

pub fn serialize_der(&self) -> Vec<u8>[src]

Serializes the certificate to the binary DER format

pub fn serialize_pem(&self) -> String[src]

Serializes the certificate to the ASCII PEM format

pub fn serialize_private_key_der(&self) -> Vec<u8>[src]

Serializes the private key in PKCS#8 format

pub fn serialize_private_key_pem(&self) -> String[src]

Serializes the private key in PEM format

Auto Trait Implementations

impl Send for Certificate

impl Sync for Certificate

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.