pub struct Ed25519IdentityCert {
pub id_ed25519: Ed25519Identity,
pub sign_ed25519: Ed25519Identity,
}Expand description
An Ed25519 identity certificate.
This is a certificate of CertType::IDENTITY_V_SIGNING where the
relay’s long-term ed25519 identity key signs the relay’s medium-term
ed25519 signing key, used for signing almost all other certifications
associated with a given relay.
Fields§
§id_ed25519: Ed25519IdentityThe long-term ed25519 identity key of the relay
sign_ed25519: Ed25519IdentityThe medium-term ed25519 signing key of the relay.
Implementations§
Source§impl Ed25519IdentityCert
impl Ed25519IdentityCert
Sourcepub fn verify(
cert: KeyUnknownCert,
post_tolerance: Duration,
now: SystemTime,
) -> StdResult<Self, VerifyFailed>
pub fn verify( cert: KeyUnknownCert, post_tolerance: Duration, now: SystemTime, ) -> StdResult<Self, VerifyFailed>
Verifies the validity of an Ed25519IdentityCert.
§Requirements
- MUST have the identity key in the
signed-with-ed25519-keyextension. - MUST have a valid signature by the identity key.
- MUST be valid at
now. - MUST be of
CertType::IDENTITY_V_SIGNING. - Certified key MUST BE of
tor_cert::CertifiedKey::Ed25519. - Both keys MUST be different.
- Both keys MUST be valid mappings to a
ed25519::PublicKey.
Sourcepub fn new_signed(
id_ed25519: &Keypair,
sign_ed25519: Ed25519Identity,
expiry: SystemTime,
) -> StdResult<EmbeddedCert<Self, KeyUnknownCert>, Bug>
pub fn new_signed( id_ed25519: &Keypair, sign_ed25519: Ed25519Identity, expiry: SystemTime, ) -> StdResult<EmbeddedCert<Self, KeyUnknownCert>, Bug>
Creates a new signed Ed25519IdentityCert.
Trait Implementations§
Source§impl Clone for Ed25519IdentityCert
impl Clone for Ed25519IdentityCert
Source§fn clone(&self) -> Ed25519IdentityCert
fn clone(&self) -> Ed25519IdentityCert
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Ed25519IdentityCert
impl Debug for Ed25519IdentityCert
Source§impl PartialEq for Ed25519IdentityCert
impl PartialEq for Ed25519IdentityCert
Source§fn eq(&self, other: &Ed25519IdentityCert) -> bool
fn eq(&self, other: &Ed25519IdentityCert) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for Ed25519IdentityCert
impl StructuralPartialEq for Ed25519IdentityCert
Auto Trait Implementations§
impl Freeze for Ed25519IdentityCert
impl RefUnwindSafe for Ed25519IdentityCert
impl Send for Ed25519IdentityCert
impl Sync for Ed25519IdentityCert
impl Unpin for Ed25519IdentityCert
impl UnsafeUnpin for Ed25519IdentityCert
impl UnwindSafe for Ed25519IdentityCert
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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