pub struct CertType(_);
Expand description
Recognized values for Tor’s certificate type field.
In the names used here, “X_V_Y” means “key X verifying key Y”, whereas “X_CC_Y” means “key X cross-certifying key Y”. In both cases, X is the key that is doing the signing, and Y is the key or object that is getting signed.
Not every one of these types is valid for an Ed25519 certificate. Some are for X.509 certs in a CERTS cell; some are for RSA->Ed crosscerts in a CERTS cell.
Implementations
sourceimpl CertType
impl CertType
sourcepub const TLS_LINK_X509: CertType = CertType(1)
pub const TLS_LINK_X509: CertType = CertType(1)
TLS link key, signed with RSA identity. X.509 format. (Obsolete)
sourcepub const RSA_ID_X509: CertType = CertType(2)
pub const RSA_ID_X509: CertType = CertType(2)
Self-signed RSA identity certificate. X.509 format. (Legacy)
sourcepub const LINK_AUTH_X509: CertType = CertType(3)
pub const LINK_AUTH_X509: CertType = CertType(3)
RSA lnk authentication key signed with RSA identity key. X.509 format. (Obsolete)
sourcepub const IDENTITY_V_SIGNING: CertType = CertType(4)
pub const IDENTITY_V_SIGNING: CertType = CertType(4)
Identity verifying a signing key, directly.
sourcepub const SIGNING_V_TLS_CERT: CertType = CertType(5)
pub const SIGNING_V_TLS_CERT: CertType = CertType(5)
Signing key verifying a TLS certificate by digest.
sourcepub const SIGNING_V_LINK_AUTH: CertType = CertType(6)
pub const SIGNING_V_LINK_AUTH: CertType = CertType(6)
Signing key verifying a link authentication key.
sourcepub const RSA_ID_V_IDENTITY: CertType = CertType(7)
pub const RSA_ID_V_IDENTITY: CertType = CertType(7)
RSA identity key certifying an Ed25519 identity key. RSA crosscert format. (Legacy)
sourcepub const HS_BLINDED_ID_V_SIGNING: CertType = CertType(8)
pub const HS_BLINDED_ID_V_SIGNING: CertType = CertType(8)
For onion services: short-term signing key authenticated with blinded service identity.
sourcepub const HS_IP_V_SIGNING: CertType = CertType(9)
pub const HS_IP_V_SIGNING: CertType = CertType(9)
For onion services: to be documented.
sourcepub const NTOR_CC_IDENTITY: CertType = CertType(10)
pub const NTOR_CC_IDENTITY: CertType = CertType(10)
An ntor key converted to a ed25519 key, cross-certifying an identity key.
sourcepub const HS_IP_CC_SIGNING: CertType = CertType(11)
pub const HS_IP_CC_SIGNING: CertType = CertType(11)
For onion services: to be documented.
sourcepub fn is_recognized(self) -> bool
pub fn is_recognized(self) -> bool
Return true if this value is one that we recognize.
Trait Implementations
impl Copy for CertType
impl Eq for CertType
impl StructuralEq for CertType
impl StructuralPartialEq for CertType
Auto Trait Implementations
impl RefUnwindSafe for CertType
impl Send for CertType
impl Sync for CertType
impl Unpin for CertType
impl UnwindSafe for CertType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more