Struct botan::Certificate

source ·
pub struct Certificate { /* private fields */ }
Expand description

X.509 certificate

Implementations§

source§

impl Certificate

source

pub fn load(data: &[u8]) -> Result<Certificate>

Load a X.509 certificate from DER or PEM representation

source

pub fn from_file(fsname: &str) -> Result<Certificate>

Read an X.509 certificate from a file

source

pub fn serial_number(&self) -> Result<Vec<u8>>

Return the serial number of this certificate

source

pub fn fingerprint(&self, hash: &str) -> Result<Vec<u8>>

Return the fingerprint of this certificate

source

pub fn duplicate(&self) -> Result<Certificate>

Duplicate the certificate object

Since certificate objects are immutable, duplication just involves atomic incrementing a reference count, so is quite cheap

source

pub fn authority_key_id(&self) -> Result<Vec<u8>>

Return the authority key id, if set

source

pub fn subject_key_id(&self) -> Result<Vec<u8>>

Return the subject key id, if set

source

pub fn public_key_bits(&self) -> Result<Vec<u8>>

Return the byte representation of the public key

source

pub fn public_key(&self) -> Result<Pubkey>

Return the public key included in this certificate

source

pub fn to_string(&self) -> Result<String>

Return a free-form string representation of this certificate

source

pub fn allows_usage(&self, usage: CertUsage) -> Result<bool>

Test if the certificate is allowed for a particular usage

source

pub fn verify( &self, intermediates: &[&Certificate], trusted: &[&Certificate], trusted_path: Option<&str>, hostname: Option<&str>, reference_time: Option<u64> ) -> Result<CertValidationStatus>

Attempt to verify this certificate

source

pub fn matches_hostname(&self, hostname: &str) -> Result<bool>

Return true if the provided hostname is valid for this certificate

Trait Implementations§

source§

impl Clone for Certificate

source§

fn clone(&self) -> Certificate

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Certificate

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for Certificate

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl Send for Certificate

source§

impl Sync for Certificate

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.