47 releases

0.21.6 Mar 17, 2025
0.21.4 Aug 29, 2024
0.21.0 May 2, 2024
0.20.2 Apr 5, 2025
0.7.0 Jun 10, 2019

#1029 in Network programming

Download history 30727/week @ 2025-01-07 33235/week @ 2025-01-14 29713/week @ 2025-01-21 36267/week @ 2025-01-28 40409/week @ 2025-02-04 34942/week @ 2025-02-11 35135/week @ 2025-02-18 33091/week @ 2025-02-25 32813/week @ 2025-03-04 37665/week @ 2025-03-11 35852/week @ 2025-03-18 32633/week @ 2025-03-25 35145/week @ 2025-04-01 37084/week @ 2025-04-08 27615/week @ 2025-04-15 26560/week @ 2025-04-22

132,434 downloads per month
Used in 22 crates (8 directly)

BSD-2-Clause

15KB
170 lines

rustls-connector

API Docs Build status Downloads

Connector similar to openssl or native-tls for rustls

rustls-connector is a library aiming at simplifying using rustls as an alternative to openssl and native-tls

Warning about crypto backends

A crypto implementation must be enabled in rustls using feature flags. We mimic what rustls does, providing one feature flag per implementation and enabling the same as rustls by default. Available options are:

  • rustls--aws_lc_rs (default)
  • rustls--ring

Examples

To connect to a remote server:

use rustls_connector::RustlsConnector;

use std::{
    io::{Read, Write},
    net::TcpStream,
};

let connector = RustlsConnector::new_with_native_certs().unwrap();
let stream = TcpStream::connect("google.com:443").unwrap();
let mut stream = connector.connect("google.com", stream).unwrap();

stream.write_all(b"GET / HTTP/1.0\r\n\r\n").unwrap();
let mut res = vec![];
stream.read_to_end(&mut res).unwrap();
println!("{}", String::from_utf8_lossy(&res));

Dependencies

~8–23MB
~496K SLoC