Enum rustls::CertificateError

source ·
#[non_exhaustive]
pub enum CertificateError { BadEncoding, Expired, NotValidYet, Revoked, UnhandledCriticalExtension, UnknownIssuer, UnknownRevocationStatus, BadSignature, NotValidForName, InvalidPurpose, ApplicationVerificationFailure, Other(OtherError), }
Expand description

The ways in which certificate validators can express errors.

Note that the rustls TLS protocol code interprets specifically these error codes to send specific TLS alerts. Therefore, if a custom certificate validator uses incorrect errors the library as a whole will send alerts that do not match the standard (this is usually a minor issue, but could be misleading).

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

BadEncoding

The certificate is not correctly encoded.

§

Expired

The current time is after the notAfter time in the certificate.

§

NotValidYet

The current time is before the notBefore time in the certificate.

§

Revoked

The certificate has been revoked.

§

UnhandledCriticalExtension

The certificate contains an extension marked critical, but it was not processed by the certificate validator.

§

UnknownIssuer

The certificate chain is not issued by a known root certificate.

§

UnknownRevocationStatus

The certificate’s revocation status could not be determined.

§

BadSignature

A certificate is not correctly signed by the key of its alleged issuer.

§

NotValidForName

The subject names in an end-entity certificate do not include the expected name.

§

InvalidPurpose

The certificate is being used for a different purpose than allowed.

§

ApplicationVerificationFailure

The certificate is valid, but the handshake is rejected for other reasons.

§

Other(OtherError)

Any other error.

This can be used by custom verifiers to expose the underlying error (where they are not better described by the more specific errors above).

It is also used by the default verifier in case its error is not covered by the above common cases.

Enums holding this variant will never compare equal to each other.

Trait Implementations§

source§

impl Clone for CertificateError

source§

fn clone(&self) -> CertificateError

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 CertificateError

source§

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

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

impl From<CertificateError> for AlertDescription

source§

fn from(e: CertificateError) -> Self

Converts to this type from the input type.
source§

impl From<CertificateError> for Error

source§

fn from(e: CertificateError) -> Self

Converts to this type from the input type.
source§

impl PartialEq for CertificateError

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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 T
where 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.