Struct tor_cert::KeyUnknownCert

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

A parsed Ed25519 certificate. Maybe it includes its signing key; maybe it doesn’t.

To validate this cert, either it must contain its signing key, or the caller must know the signing key. In the first case, call should_have_signing_key; in the latter, call should_be_signed_with.

Implementations§

source§

impl KeyUnknownCert

source

pub fn peek_cert_type(&self) -> CertType

Return the certificate type of the underling cert.

source

pub fn peek_subject_key(&self) -> &CertifiedKey

Return subject key of the underlying cert.

source

pub fn check_key( self, pkey: Option<&Ed25519Identity> ) -> Result<UncheckedCert, CertError>

👎Deprecated since 0.7.1: Use should_have_signing_key or should_be_signed_with instead.

Check whether a given pkey is (or might be) a key that has correctly signed this certificate.

If pkey is None, this certificate must contain its signing key.

On success, we can check whether the certificate is well-signed; otherwise, we can’t check the certificate.

source

pub fn should_have_signing_key(self) -> Result<UncheckedCert, CertError>

Declare that this should be a self-contained certificate that contains its own signing key.

On success, this certificate did indeed turn out to be self-contained, and so we can validate it. On failure, this certificate was not self-contained.

source

pub fn should_be_signed_with( self, pkey: &Ed25519Identity ) -> Result<UncheckedCert, CertError>

Declare that this should be a certificate signed with a given key.

On success, this certificate either listed the provided key, or did not list any key: in either case, we can validate it. On failure, this certificate claims to be signed with a different key.

Trait Implementations§

source§

impl Clone for KeyUnknownCert

source§

fn clone(&self) -> KeyUnknownCert

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 KeyUnknownCert

source§

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

Formats the value using the given formatter. Read more

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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more