8 releases
0.3.2 | Jun 22, 2022 |
---|---|
0.3.1 | Jun 13, 2022 |
0.2.0 | May 31, 2022 |
0.1.4 | May 31, 2022 |
#23 in #hyper-server
197 downloads per month
27KB
242 lines
Simple Hyper Server TLS
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.
List of other features
hyper-full-server
- enables all features for hyper server.
Examples
The simplest usage is:
use std::{convert::Infallible, net::SocketAddr};
use simple_hyper_server_tls::*;
use hyper::{Body, Request, Response, Server};
use hyper::service::{make_service_fn, service_fn};
async fn handle(_: Request<Body>) -> Result<Response<Body>, Infallible> {
Ok(Response::new("Hello, World!".into()))
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
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);
}
Ok(())
}
Additional functions can be used for customization of the TLS configuration.
Dependencies
~5–16MB
~217K SLoC