Struct tor_cert::rsa::UncheckedRsaCrosscert
source · pub struct UncheckedRsaCrosscert(_);Expand description
An RsaCrosscert whose signature has not been checked.
Trait Implementations§
source§impl ExternallySigned<TimerangeBound<RsaCrosscert>> for UncheckedRsaCrosscert
impl ExternallySigned<TimerangeBound<RsaCrosscert>> for UncheckedRsaCrosscert
source§fn key_is_correct(&self, _k: &Self::Key) -> Result<(), Self::KeyHint>
fn key_is_correct(&self, _k: &Self::Key) -> Result<(), Self::KeyHint>
Check whether k is the right key for this object. If not, return
an error describing what key would be right. Read more
source§fn is_well_signed(&self, k: &Self::Key) -> Result<(), Self::Error>
fn is_well_signed(&self, k: &Self::Key) -> Result<(), Self::Error>
Check the signature on this object
source§fn dangerously_assume_wellsigned(self) -> TimerangeBound<RsaCrosscert>
fn dangerously_assume_wellsigned(self) -> TimerangeBound<RsaCrosscert>
Unwrap this object without checking any signatures on it.