Struct SslConfig

Source
pub struct SslConfig {
    pub modern_security: bool,
    pub ssl_timeout: u64,
    /* private fields */
}
Available on crate feature config only.
Expand description

SSL configuration for socket

Client SSL socket

use std::io;
use std::pin::Pin;
use tokio::net::TcpStream;
use tokio_openssl::SslStream;
use openssl::ssl::{ErrorCode, Ssl, SslMethod, SslVerifyMode};
use prosa_utils::config::ssl::{SslConfig, SslConfigContext};

async fn client() -> Result<(), io::Error> {
    let mut stream = TcpStream::connect("localhost:4443").await?;

    let client_config = SslConfig::default();
    if let Ok(mut ssl_context_builder) = client_config.init_tls_client_context() {
        let ssl = ssl_context_builder.build().configure().unwrap().into_ssl("localhost").unwrap();
        let mut stream = SslStream::new(ssl, stream).unwrap();
        if let Err(e) = Pin::new(&mut stream).connect().await {
            if e.code() != ErrorCode::ZERO_RETURN {
                eprintln!("Can't connect the client: {}", e);
            }
        }

        // SSL stream ...
    }

    Ok(())
}

Server SSL socket

use std::io;
use std::pin::Pin;
use tokio::net::TcpListener;
use tokio_openssl::SslStream;
use openssl::ssl::{ErrorCode, Ssl, SslMethod, SslVerifyMode};
use prosa_utils::config::ssl::{SslConfig, SslConfigContext};

async fn server() -> Result<(), io::Error> {
    let listener = TcpListener::bind("0.0.0.0:4443").await?;

    let server_config = SslConfig::new_cert_key("cert.pem".into(), "cert.key".into(), Some("passphrase".into()));
    if let Ok(mut ssl_context_builder) = server_config.init_tls_server_context(None) {
        ssl_context_builder.set_verify(SslVerifyMode::NONE);
        let ssl_context = ssl_context_builder.build();

        loop {
            let (stream, cli_addr) = listener.accept().await?;
            let ssl = Ssl::new(&ssl_context.context()).unwrap();
            let mut stream = SslStream::new(ssl, stream).unwrap();
            if let Err(e) = Pin::new(&mut stream).accept().await {
                if e.code() != ErrorCode::ZERO_RETURN {
                    eprintln!("Can't accept the client {}: {}", cli_addr, e);
                }
            }

            // SSL stream ...
        }
    }

    Ok(())
}

Fields§

§modern_security: bool

Security level. If true, it’ll use the modern version 5 of Mozilla’s TLS recommendations.

§ssl_timeout: u64

SSL operation timeout in milliseconds

Implementations§

Source§

impl SslConfig

Source

pub fn new_pkcs12(pkcs12_path: String) -> SslConfig

Method to create an ssl configuration from a pkcs12 manually Should be use with config instead of building it manually

Source

pub fn new_cert_key( cert_path: String, key_path: String, passphrase: Option<String>, ) -> SslConfig

Method to create an ssl configuration from a certificate and its key manually Should be use with config instead of building it manually

Source

pub fn new_self_cert(cert_path: String) -> SslConfig

Method to create an ssl configuration that will generate a self signed certificate and write it’s certificate to the cert_path Should be use with config instead of building it manually

Source

pub fn get_ssl_timeout(&self) -> Duration

Getter of the SSL timeout

Source

pub fn set_store(&mut self, store: Store)

Setter of the store certificate

Source

pub fn set_alpn(&mut self, alpn: Vec<String>)

Setter of the ALPN list send by the client, or order of ALPN accepted by the server

Trait Implementations§

Source§

impl Clone for SslConfig

Source§

fn clone(&self) -> SslConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SslConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for SslConfig

Source§

fn default() -> SslConfig

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for SslConfig

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for SslConfig

Source§

fn eq(&self, other: &SslConfig) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for SslConfig

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl SslConfigContext<SslConnectorBuilder, SslAcceptorBuilder> for SslConfig

Available on crate feature config-openssl only.
Source§

fn init_tls_client_context(&self) -> Result<SslConnectorBuilder, ConfigError>

Method to init an OpenSSL context for a client socket

use std::io;
use std::pin::Pin;
use tokio::net::TcpStream;
use tokio_openssl::SslStream;
use openssl::ssl::{ErrorCode, Ssl, SslMethod, SslVerifyMode};
use prosa_utils::config::ssl::{SslConfig, SslConfigContext};

async fn client() -> Result<(), io::Error> {
    let mut stream = TcpStream::connect("localhost:4443").await?;

    let client_config = SslConfig::default();
    if let Ok(mut ssl_context_builder) = client_config.init_tls_client_context() {
        let ssl_context = ssl_context_builder.build();
        let ssl = Ssl::new(&ssl_context.context()).unwrap();
        let mut stream = SslStream::new(ssl, stream).unwrap();
        if let Err(e) = Pin::new(&mut stream).connect().await {
            if e.code() != ErrorCode::ZERO_RETURN {
                eprintln!("Can't connect the client: {}", e);
            }
        }

        // SSL stream ...
    }

    Ok(())
}
Source§

fn init_tls_server_context( &self, host: Option<&str>, ) -> Result<SslAcceptorBuilder, ConfigError>

Method to init an OpenSSL context for a server socket

use std::io;
use std::pin::Pin;
use tokio::net::TcpListener;
use tokio_openssl::SslStream;
use openssl::ssl::{ErrorCode, Ssl, SslMethod, SslVerifyMode};
use prosa_utils::config::ssl::{SslConfig, SslConfigContext};

async fn server() -> Result<(), io::Error> {
    let listener = TcpListener::bind("0.0.0.0:4443").await?;

    let server_config = SslConfig::new_cert_key("cert.pem".into(), "cert.key".into(), Some("passphrase".into()));
    if let Ok(mut ssl_context_builder) = server_config.init_tls_server_context(Some("localhost")) {
        ssl_context_builder.set_verify(SslVerifyMode::NONE);
        let ssl_context = ssl_context_builder.build();

        loop {
            let (stream, cli_addr) = listener.accept().await?;
            let ssl = Ssl::new(&ssl_context.context()).unwrap();
            let mut stream = SslStream::new(ssl, stream).unwrap();
            if let Err(e) = Pin::new(&mut stream).accept().await {
                if e.code() != ErrorCode::ZERO_RETURN {
                    eprintln!("Can't accept the client {}: {}", cli_addr, e);
                }
            }

            // SSL stream ...
        }
    }

    Ok(())
}
Source§

impl StructuralPartialEq for SslConfig

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FutureExt for T

Source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,