Struct trust_dns_native_tls::tls_stream::TlsStreamBuilder
source · pub struct TlsStreamBuilder { /* private fields */ }
Expand description
A builder for the TlsStream
Implementations
sourceimpl TlsStreamBuilder
impl TlsStreamBuilder
sourcepub fn new() -> TlsStreamBuilder
pub fn new() -> TlsStreamBuilder
Constructs a new TlsStreamBuilder
sourcepub fn add_ca(&mut self, ca: Certificate)
pub fn add_ca(&mut self, ca: Certificate)
Add a custom trusted peer certificate or certificate auhtority.
If this is the ‘client’ then the ‘server’ must have it associated as it’s identity
, or have had the identity
signed by this certificate.
sourcepub fn build(
self,
name_server: SocketAddr,
dns_name: String
) -> (Box<dyn Future<Item = TlsStream, Error = Error> + Send>, BufStreamHandle)
pub fn build(
self,
name_server: SocketAddr,
dns_name: String
) -> (Box<dyn Future<Item = TlsStream, Error = Error> + Send>, BufStreamHandle)
Creates a new TlsStream to the specified name_server
RFC 7858, DNS over TLS, May 2016
3.2. TLS Handshake and Authentication
Once the DNS client succeeds in connecting via TCP on the well-known
port for DNS over TLS, it proceeds with the TLS handshake [RFC5246],
following the best practices specified in [BCP195].
The client will then authenticate the server, if required. This
document does not propose new ideas for authentication. Depending on
the privacy profile in use (Section 4), the DNS client may choose not
to require authentication of the server, or it may make use of a
trusted Subject Public Key Info (SPKI) Fingerprint pin set.
After TLS negotiation completes, the connection will be encrypted and
is now protected from eavesdropping.
Arguments
name_server
- IP and Port for the remote DNS resolverdns_name
- The DNS name, Public Key Info (SPKI) name, as associated to a certificate
Auto Trait Implementations
impl RefUnwindSafe for TlsStreamBuilder
impl Send for TlsStreamBuilder
impl Sync for TlsStreamBuilder
impl Unpin for TlsStreamBuilder
impl UnwindSafe for TlsStreamBuilder
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