#tls #tokio #async #sockets #tokio-proto

tokio-tls-api

An implementation of TLS/SSL streams for Tokio giving an implementation of TLS for nonblocking I/O streams

19 releases

Uses old Rust 2015

0.2.1 Jan 1, 2020
0.2.0 May 26, 2019
0.1.22 Apr 28, 2019
0.1.20 Jul 15, 2018
0.1.8 Jun 17, 2017

#81 in #sockets

Download history 3620/week @ 2025-09-19 3760/week @ 2025-09-26 3047/week @ 2025-10-03 3283/week @ 2025-10-10 3568/week @ 2025-10-17 2719/week @ 2025-10-24 1842/week @ 2025-10-31 2028/week @ 2025-11-07 1899/week @ 2025-11-14 1817/week @ 2025-11-21 1508/week @ 2025-11-28 1175/week @ 2025-12-05 1218/week @ 2025-12-12 1182/week @ 2025-12-19 1061/week @ 2025-12-26 1142/week @ 2026-01-02

4,770 downloads per month
Used in 11 crates (via lapin-futures-tls-api)

MIT/Apache

31KB
557 lines

tokio-tls

An implementation of TLS/SSL streams for Tokio built on top of the native-tls crate

Build Status Build status

Documentation

Usage

First, add this to your Cargo.toml:

[dependencies]
native-tls = "0.1"
tokio-tls = "0.1"

Next, add this to your crate:

extern crate tls_api;
extern crate tokio_tls_api;

use tokio_tls::{TlsConnectorExt, TlsAcceptorExt};

You can find an example of using this crate at https://tokio.rs along with a detailed explanation of what's happening.

This crate provides two extension traits, TlsConnectorExt and TlsAcceptorExt, which augment the functionality provided by the native-tls crate. These extension traits provide the ability to connect a stream asynchronously and accept a socket asynchronously. Configuration of TLS parameters is still done through the support in the native-tls crate.

By default the native-tls crate currently uses the "platform appropriate" backend for a TLS implementation. This means:

Typically these selections mean that you don't have to worry about a portability when using TLS, these libraries are all normally installed by default.

Interaction with tokio-proto

If you're working with a protocol that starts out with a TLS negotation on either the client or server side then you can use the proto::Client and proto::Server types in this crate for performing those tasks. To do so, you can update your dependency as such:

[dependencies]
tokio-tls = { version = "0.1", features = ["tokio-proto"] }

License

tokio-tls is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.

Dependencies

~0.6–2MB
~30K SLoC