1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
use std::fmt;
use std::io;
use std::result;

use crate::tls_api;
use crate::tls_api::{Error, Result};

pub struct TlsConnectorBuilder;
pub struct TlsConnector;

pub struct TlsAcceptorBuilder;
pub struct TlsAcceptor;

/// Make use of the TLS implementation's crypto hashing functions.
/// Not picking any TLS implementation as a feature means hash will not work also
/// and will always return an empty vec.
pub fn hash(_algo: tls_api::HashType, _data: &[u8]) -> Vec<u8> {
    Vec::new()
}

impl tls_api::TlsConnectorBuilder for TlsConnectorBuilder {
    type Connector = TlsConnector;

    type Underlying = ();

    // fn underlying_mut(&mut self) -> &mut native_tls::TlsConnectorBuilder {
    //     &mut self.0
    // }

    fn supports_alpn() -> bool {
        false
    }

    fn set_alpn_protocols(&mut self, _protocols: &[&str]) -> Result<()> {
        Err(Error::Other("No TLS"))
    }

    fn add_der_certificate(&mut self, _cert: &[u8]) -> Result<&mut Self> {
        Err(Error::Other("No TLS"))
    }

    fn add_pem_certificate(&mut self, _cert: &[u8]) -> Result<&mut Self> {
        Err(Error::Other("No TLS"))
    }

    fn build(self) -> Result<TlsConnector> {
        Err(Error::Other("No TLS"))
    }

    fn danger_accept_invalid_certs(&mut self) -> Result<&mut Self> {
        Err(Error::Other("No TLS"))
    }
}

impl tls_api::TlsConnector for TlsConnector {
    type Builder = TlsConnectorBuilder;

    fn builder() -> Result<TlsConnectorBuilder> {
        Err(Error::Other("No TLS"))
    }

    fn connect<S>(
        &self,
        _domain: &str,
        _stream: S,
    ) -> result::Result<tls_api::TlsStream<S>, tls_api::HandshakeError<S>>
    where
        S: io::Read + io::Write + fmt::Debug + Send + Sync + 'static,
    {
        Err(tls_api::HandshakeError::Failure(Error::Other("No TLS")))
    }

    // fn danger_connect_without_providing_domain_for_certificate_verification_and_server_name_indication<
    //     S,
    // >(
    //     &self,
    //     _stream: S,
    // ) -> result::Result<tls_api::TlsStream<S>, tls_api::HandshakeError<S>>
    // where
    //     S: io::Read + io::Write + fmt::Debug + Send + Sync + 'static,
    // {
    //     Err(tls_api::HandshakeError::Failure(Error::Other("No TLS")))
    // }
}

// TlsAcceptor and TlsAcceptorBuilder

impl TlsAcceptorBuilder {
    // pub fn from_pkcs12(_pkcs12: &[u8], _password: &str) -> Result<TlsAcceptorBuilder> {
    //     Err(Error::Other("No TLS"))
    // }
}

impl tls_api::TlsAcceptorBuilder for TlsAcceptorBuilder {
    type Acceptor = TlsAcceptor;

    type Underlying = ();

    fn supports_alpn() -> bool {
        false
    }

    fn set_alpn_protocols(&mut self, _protocols: &[&str]) -> Result<()> {
        Err(Error::Other("ALPN is not implemented in rust-native-tls"))
    }

    // fn underlying_mut(&mut self) -> &mut native_tls::TlsAcceptorBuilder {
    //     &mut self.0
    // }

    fn build(self) -> Result<TlsAcceptor> {
        Err(Error::Other("No TLS"))
    }
}

impl tls_api::TlsAcceptor for TlsAcceptor {
    type Builder = TlsAcceptorBuilder;

    fn accept<S>(
        &self,
        _stream: S,
    ) -> result::Result<tls_api::TlsStream<S>, tls_api::HandshakeError<S>>
    where
        S: io::Read + io::Write + fmt::Debug + Send + Sync + 'static,
    {
        Err(tls_api::HandshakeError::Failure(Error::Other("No TLS")))
    }
}