Simple Hyper Server TLS

LGPL 2.1 License Crate version Docs

The library to simplify TLS configuration for Hyper server including ALPN (Application-Layer Protocol Negotiation) setup. This library setup TLS configuration suitable for clients. The configuration includes the HTTP protocol choice setup (ALPN mechanism setup) thanks to the almost clients can choose for example HTTP/2 protocol.

The usage of this library requires choose suitable the TLS implementation, by choosing feature that one of: * tls-rustls - RusTLS - native for Rust TLS implementation based on tokio-rustls, * tls-openssl - OpenSSL - TLS implementation based native OpenSSL library and openssl.

The tls-openssl is recommended for systems which can not handle rustls due to some problems, like lacks of some CPU instructions needed by ring crate. For other systems, tls-rustls should be preferred.

By default two versions of protocols is enabled (HTTP/1.1, HTTP/2). It is possible to choose only one version by disabling default features and choose one of features: * hyper-h1 - for HTTP/1.1, * hyper-h2 - for HTTP/2.

List of other features

Examples

The simplest usage is:

```norun use std::{convert::Infallible, net::SocketAddr}; use simplehyperservertls::*; use hyper::{Body, Request, Response, Server}; use hyper::service::{makeservicefn, service_fn};

async fn handle(_: Request) -> Result, Infallible> { Ok(Response::new("Hello, World!".into())) }

[tokio::main]

async fn main() { let addr = SocketAddr::from(([127, 0, 0, 1], 3000));

let make_svc = make_service_fn(|_conn| async {
    Ok::<_, Infallible>(service_fn(handle))
});
let mut server = hyper_from_pem_files("cert.pem", "key.pem", Protocols::ALL, &addr)?
        .serve(make_svc);
while let Err(e) = (&mut server).await {
    eprintln!("server error: {}", e);
}

} ```

The additional functions can be used for customization of the TLS configuration.