Struct rustls::OwnedTrustAnchor
source · [−]pub struct OwnedTrustAnchor { /* private fields */ }
Expand description
A trust anchor, commonly known as a “Root Certificate.”
Implementations
sourceimpl OwnedTrustAnchor
impl OwnedTrustAnchor
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
sourceimpl Clone for OwnedTrustAnchor
impl Clone for OwnedTrustAnchor
sourcefn clone(&self) -> OwnedTrustAnchor
fn clone(&self) -> OwnedTrustAnchor
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations
impl RefUnwindSafe for OwnedTrustAnchor
impl Send for OwnedTrustAnchor
impl Sync for OwnedTrustAnchor
impl Unpin for OwnedTrustAnchor
impl UnwindSafe for OwnedTrustAnchor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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