Struct rustls::ResolvesServerCertUsingSNI [−][src]
pub struct ResolvesServerCertUsingSNI { /* fields omitted */ }Something that resolves do different cert chains/keys based on client-supplied server name (via SNI).
Implementations
impl ResolvesServerCertUsingSNI[src]
impl ResolvesServerCertUsingSNI[src]pub fn new() -> ResolvesServerCertUsingSNI[src]
Create a new and empty (ie, knows no certificates) resolver.
pub fn add(&mut self, name: &str, ck: CertifiedKey) -> Result<(), TLSError>[src]
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
impl ResolvesServerCert for ResolvesServerCertUsingSNI[src]
impl ResolvesServerCert for ResolvesServerCertUsingSNI[src]