rama-tls 0.3.0

rama TLS-agnostic types and utilities
Documentation
//! TLS implementation agnostic server types

mod config;
#[doc(inline)]
pub use config::{
    ClientVerifyMode, DynamicCertIssuer, SelfSignedData, SelfSignedKeyKind, ServerAuthData,
    TlsClientVerify, TlsServerAuth, TlsServerConfig, TlsStoreClientCertChain,
};

mod peek;
#[doc(inline)]
pub use peek::{NoTlsRejectError, TlsPeekRouter, TlsPrefixedIo};

mod peek_client_hello;
#[doc(inline)]
pub use peek_client_hello::{
    InputWithClientHello, PeekTlsClientHelloService, TlsClientHelloPrefixedIo,
    peek_client_hello_from_input,
};

mod sni;
#[doc(inline)]
pub use sni::{SniPrefixedIo, SniRequest, SniRouter};