pub enum SctEntry {
X509(Vec<u8>),
PreCert {
tbs: Vec<u8>,
issuer_key_hash: [u8; 32],
},
}
Expand description
Either a X509 der, or (in case of pre-cert) tbs and issuer key hash.
Used within SignedCertificateTimestamp
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SctEntry
impl RefUnwindSafe for SctEntry
impl Send for SctEntry
impl Sync for SctEntry
impl Unpin for SctEntry
impl UnwindSafe for SctEntry
Blanket Implementations§
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