[−][src]Struct rcgen::Certificate
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_der_with_signer(&self, ca: &Certificate) -> Vec<u8>[src]
Serializes the certificate, signed with another certificate's key, in binary DER format
pub fn serialize_request_der(&self) -> Vec<u8>[src]
Serializes a certificate signing request in binary DER format
pub fn serialize_pem(&self) -> String[src]
Serializes the certificate to the ASCII PEM format
pub fn serialize_pem_with_signer(&self, ca: &Certificate) -> String[src]
Serializes the certificate, signed with another certificate's key, to the ASCII PEM format
pub fn serialize_request_pem(&self) -> String[src]
Serializes the certificate signing request 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<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,