Struct rustls::OwnedTrustAnchor
source · pub struct OwnedTrustAnchor {
subject_dn_header_len: usize,
subject_dn: DistinguishedName,
spki: Vec<u8>,
name_constraints: Option<Vec<u8>>,
}
Expand description
A trust anchor, commonly known as a “Root Certificate.”
Fields§
§subject_dn_header_len: usize
§subject_dn: DistinguishedName
§spki: Vec<u8>
§name_constraints: Option<Vec<u8>>
Implementations§
source§impl OwnedTrustAnchor
impl OwnedTrustAnchor
sourcepub(crate) fn to_trust_anchor(&self) -> TrustAnchor<'_>
pub(crate) fn to_trust_anchor(&self) -> TrustAnchor<'_>
Get a webpki::TrustAnchor
by borrowing the owned elements.
sourcepub fn from_subject_spki_name_constraints(
subject: impl Into<Vec<u8>>,
spki: impl Into<Vec<u8>>,
name_constraints: Option<impl Into<Vec<u8>>>,
) -> Self
pub fn from_subject_spki_name_constraints( subject: impl Into<Vec<u8>>, spki: impl Into<Vec<u8>>, name_constraints: Option<impl Into<Vec<u8>>>, ) -> Self
Constructs an OwnedTrustAnchor
from its components.
All inputs are DER-encoded.
subject
is the Subject field of the trust anchor without the outer SEQUENCE
encoding.
spki
is the SubjectPublicKeyInfo field of the trust anchor.
name_constraints
is the Name Constraints to
apply for this trust anchor, if any.
sourcepub fn subject(&self) -> &DistinguishedName
pub fn subject(&self) -> &DistinguishedName
Return the subject field including its outer SEQUENCE encoding.
This can be decoded using x509-parser’s FromDer trait.
ⓘ
use x509_parser::prelude::FromDer;
println!("{}", x509_parser::x509::X509Name::from_der(anchor.subject())?.1);
Trait Implementations§
source§impl Clone for OwnedTrustAnchor
impl Clone for OwnedTrustAnchor
source§fn clone(&self) -> OwnedTrustAnchor
fn clone(&self) -> OwnedTrustAnchor
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for OwnedTrustAnchor
impl RefUnwindSafe for OwnedTrustAnchor
impl Send for OwnedTrustAnchor
impl Sync for OwnedTrustAnchor
impl Unpin for OwnedTrustAnchor
impl UnwindSafe for OwnedTrustAnchor
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