#[non_exhaustive]pub struct TlsValidationContextBuilder { /* private fields */ }
Expand description
A builder for TlsValidationContext
.
Implementations§
source§impl TlsValidationContextBuilder
impl TlsValidationContextBuilder
sourcepub fn trust(self, input: TlsValidationContextTrust) -> Self
pub fn trust(self, input: TlsValidationContextTrust) -> Self
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
This field is required.sourcepub fn set_trust(self, input: Option<TlsValidationContextTrust>) -> Self
pub fn set_trust(self, input: Option<TlsValidationContextTrust>) -> Self
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
sourcepub fn get_trust(&self) -> &Option<TlsValidationContextTrust>
pub fn get_trust(&self) -> &Option<TlsValidationContextTrust>
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
sourcepub fn subject_alternative_names(self, input: SubjectAlternativeNames) -> Self
pub fn subject_alternative_names(self, input: SubjectAlternativeNames) -> Self
A reference to an object that represents the SANs for a Transport Layer Security (TLS) validation context. If you don't specify SANs on the terminating mesh endpoint, the Envoy proxy for that node doesn't verify the SAN on a peer client certificate. If you don't specify SANs on the originating mesh endpoint, the SAN on the certificate provided by the terminating endpoint must match the mesh endpoint service discovery configuration. Since SPIRE vended certificates have a SPIFFE ID as a name, you must set the SAN since the name doesn't match the service discovery name.
sourcepub fn set_subject_alternative_names(
self,
input: Option<SubjectAlternativeNames>
) -> Self
pub fn set_subject_alternative_names( self, input: Option<SubjectAlternativeNames> ) -> Self
A reference to an object that represents the SANs for a Transport Layer Security (TLS) validation context. If you don't specify SANs on the terminating mesh endpoint, the Envoy proxy for that node doesn't verify the SAN on a peer client certificate. If you don't specify SANs on the originating mesh endpoint, the SAN on the certificate provided by the terminating endpoint must match the mesh endpoint service discovery configuration. Since SPIRE vended certificates have a SPIFFE ID as a name, you must set the SAN since the name doesn't match the service discovery name.
sourcepub fn get_subject_alternative_names(&self) -> &Option<SubjectAlternativeNames>
pub fn get_subject_alternative_names(&self) -> &Option<SubjectAlternativeNames>
A reference to an object that represents the SANs for a Transport Layer Security (TLS) validation context. If you don't specify SANs on the terminating mesh endpoint, the Envoy proxy for that node doesn't verify the SAN on a peer client certificate. If you don't specify SANs on the originating mesh endpoint, the SAN on the certificate provided by the terminating endpoint must match the mesh endpoint service discovery configuration. Since SPIRE vended certificates have a SPIFFE ID as a name, you must set the SAN since the name doesn't match the service discovery name.
sourcepub fn build(self) -> TlsValidationContext
pub fn build(self) -> TlsValidationContext
Consumes the builder and constructs a TlsValidationContext
.
Trait Implementations§
source§impl Clone for TlsValidationContextBuilder
impl Clone for TlsValidationContextBuilder
source§fn clone(&self) -> TlsValidationContextBuilder
fn clone(&self) -> TlsValidationContextBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TlsValidationContextBuilder
impl Debug for TlsValidationContextBuilder
source§impl Default for TlsValidationContextBuilder
impl Default for TlsValidationContextBuilder
source§fn default() -> TlsValidationContextBuilder
fn default() -> TlsValidationContextBuilder
source§impl PartialEq for TlsValidationContextBuilder
impl PartialEq for TlsValidationContextBuilder
source§fn eq(&self, other: &TlsValidationContextBuilder) -> bool
fn eq(&self, other: &TlsValidationContextBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TlsValidationContextBuilder
Auto Trait Implementations§
impl Freeze for TlsValidationContextBuilder
impl RefUnwindSafe for TlsValidationContextBuilder
impl Send for TlsValidationContextBuilder
impl Sync for TlsValidationContextBuilder
impl Unpin for TlsValidationContextBuilder
impl UnwindSafe for TlsValidationContextBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more