tls-api-openssl 0.12.1

TLS API implementation over openssl crate
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug, thiserror::Error)]
pub(crate) enum Error {
    #[allow(dead_code)]
    #[error("openssl is compiled without ALPN")]
    CompiledWithoutAlpn,
    #[error("incorrect ALPN protocol name length")]
    AlpnProtocolLen,
}