[][src]Struct rcgen::Certificate

pub struct Certificate { /* fields omitted */ }

A self signed certificate together with signing keys

Implementations

impl Certificate[src]

pub fn from_params(params: CertificateParams) -> Result<Self, RcgenError>[src]

Generates a new certificate from the given parameters

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

Calculates a subject key identifier for the certificate subject's public key. This key identifier is used in the SubjectKeyIdentifier X.509v3 extension.

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

Serializes the certificate to the binary DER format

pub fn serialize_der_with_signer(
    &self,
    ca: &Certificate
) -> Result<Vec<u8>, RcgenError>
[src]

Serializes the certificate, signed with another certificate's key, in binary DER format

pub fn serialize_request_der(&self) -> Result<Vec<u8>, RcgenError>[src]

Serializes a certificate signing request in binary DER format

pub fn get_key_pair(&self) -> &KeyPair[src]

Return the certificate's key pair

pub fn serialize_pem(&self) -> Result<String, RcgenError>[src]

Serializes the certificate to the ASCII PEM format

This function is only available if rcgen is built with the "pem" feature

pub fn serialize_pem_with_signer(
    &self,
    ca: &Certificate
) -> Result<String, RcgenError>
[src]

Serializes the certificate, signed with another certificate's key, to the ASCII PEM format

This function is only available if rcgen is built with the "pem" feature

pub fn serialize_request_pem(&self) -> Result<String, RcgenError>[src]

Serializes the certificate signing request to the ASCII PEM format

This function is only available if rcgen is built with the "pem" feature

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

This function is only available if rcgen is built with the "pem" feature

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.