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 three versions of HTTP protocol are enabled (HTTP/1.0, 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.0 or HTTP/1.1,
* hyper-h2
- for HTTP/2.
hyper-full-server
- enables all features for hyper server.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
) -> Resultasync fn main() -> Result<(), Box
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);
}
Ok(())
} ```
Additional functions can be used for customization of the TLS configuration.