rustls 0.23.17

Rustls is a modern TLS library written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(any(feature = "ring", feature = "aws_lc_rs"))]
mod bench_impl;

fn main() {
    #[cfg(any(feature = "ring", feature = "aws_lc_rs"))]
    bench_impl::main();

    #[cfg(not(any(feature = "ring", feature = "aws_lc_rs")))]
    panic!("no provider to test");
}