Struct cdp::network::SecurityDetails
[−]
[src]
pub struct SecurityDetails<'a> {
pub protocol: Cow<'a, str>,
pub key_exchange: Cow<'a, str>,
pub key_exchange_group: Option<Cow<'a, str>>,
pub cipher: Cow<'a, str>,
pub mac: Option<Cow<'a, str>>,
pub certificate_id: CertificateId,
pub subject_name: Cow<'a, str>,
pub san_list: Vec<Cow<'a, str>>,
pub issuer: Cow<'a, str>,
pub valid_from: TimeSinceEpoch,
pub valid_to: TimeSinceEpoch,
pub signed_certificate_timestamp_list: Vec<SignedCertificateTimestamp<'a>>,
}Security details about a request.
Fields
protocol: Cow<'a, str>
Protocol name (e.g. "TLS 1.2" or "QUIC").
key_exchange: Cow<'a, str>
Key Exchange used by the connection, or the empty string if not applicable.
key_exchange_group: Option<Cow<'a, str>>
(EC)DH group used by the connection, if applicable.
cipher: Cow<'a, str>
Cipher name.
mac: Option<Cow<'a, str>>
TLS MAC. Note that AEAD ciphers do not have separate MACs.
certificate_id: CertificateId
Certificate ID value.
subject_name: Cow<'a, str>
Certificate subject name.
san_list: Vec<Cow<'a, str>>
Subject Alternative Name (SAN) DNS names and IP addresses.
issuer: Cow<'a, str>
Name of the issuing CA.
valid_from: TimeSinceEpoch
Certificate valid from date.
valid_to: TimeSinceEpoch
Certificate valid to (expiration) date
signed_certificate_timestamp_list: Vec<SignedCertificateTimestamp<'a>>
List of signed certificate timestamps (SCTs).
Trait Implementations
impl<'a> Clone for SecurityDetails<'a>[src]
fn clone(&self) -> SecurityDetails<'a>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<'a> Debug for SecurityDetails<'a>[src]
impl<'a> PartialEq for SecurityDetails<'a>[src]
fn eq(&self, __arg_0: &SecurityDetails<'a>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &SecurityDetails<'a>) -> bool[src]
This method tests for !=.