Skip to content

Support TLS 1.3? #140

Open
Open
@driftluo

Description

@driftluo

I observed that openssl already supports TLS 1.3, security-framework does not support TLS 1.3 and native-tls does not currently support it:
https://github.com/sfackler/rust-openssl/blob/master/openssl/src/ssl/mod.rs#L587
https://github.com/kornelski/rust-security-framework/blob/master/security-framework/src/secure_transport.rs#L383-L419

rust-native-tls/src/lib.rs

Lines 311 to 327 in 7d34900

pub enum Protocol {
/// The SSL 3.0 protocol.
///
/// # Warning
///
/// SSL 3.0 has severe security flaws, and should not be used unless absolutely necessary. If
/// you are not sure if you need to enable this protocol, you should not.
Sslv3,
/// The TLS 1.0 protocol.
Tlsv10,
/// The TLS 1.1 protocol.
Tlsv11,
/// The TLS 1.2 protocol.
Tlsv12,
#[doc(hidden)]
__NonExhaustive,
}

When is this work scheduled to start and finish? has a plan?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions