Struct rustls::AllowAnyAnonymousOrAuthenticatedClient [−][src]
pub struct AllowAnyAnonymousOrAuthenticatedClient { /* fields omitted */ }
A ClientCertVerifier
that will allow both anonymous and authenticated
clients, without any name checking.
Client authentication will be requested during the TLS handshake. If the
client offers a certificate then this acts like
AllowAnyAuthenticatedClient
, otherwise this acts like NoClientAuth
.
Implementations
impl AllowAnyAnonymousOrAuthenticatedClient
[src]
impl AllowAnyAnonymousOrAuthenticatedClient
[src]pub fn new(roots: RootCertStore) -> Arc<dyn ClientCertVerifier>
[src]
Construct a new AllowAnyAnonymousOrAuthenticatedClient
.
roots
is the list of trust anchors to use for certificate validation.