rustls-connector

Crates.iorustls-connector
lib.rsrustls-connector
version0.21.4
sourcesrc
created_at2019-05-25 22:26:01.28473
updated_at2024-08-29 20:34:33.33121
descriptionConnector similar to openssl or native-tls for rustls
homepage
repositoryhttps://github.com/amqp-rs/rustls-connector
max_upload_size
id137029
size16,252
Marc-Antoine Perennou (Keruspe)

documentation

https://docs.rs/rustls-connector

README

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));
Commit count: 113

cargo fmt