Struct rustls::ResolvesServerCertUsingSNI [−][src]
pub struct ResolvesServerCertUsingSNI { /* fields omitted */ }
Expand description
Something that resolves do different cert chains/keys based on client-supplied server name (via SNI).
Implementations
Create a new and empty (ie, knows no certificates) resolver.
Add a new sign::CertifiedKey
to be used for the given SNI name
.
This function fails if name
is not a valid DNS name, or if
it’s not valid for the supplied certificate, or if the certificate
chain is syntactically faulty.
Trait Implementations
Choose a certificate chain and matching key given simplified ClientHello information. Read more