Crates.io | rustls-channel-resolver |
lib.rs | rustls-channel-resolver |
version | 0.3.0 |
source | src |
created_at | 2024-01-31 21:53:18.045001 |
updated_at | 2024-05-19 15:05:28.963072 |
description | A simple single-cert channel-ish rustls resolver for live-reloading certificate files |
homepage | |
repository | https://git.asonix.dog/asonix/rustls-resolver |
max_upload_size | |
id | 1122235 |
size | 104,131 |
A simple channel-like resolver for live-reloading TLS certificates
cargo add rustls-channel-resolver
use std::time::Duration;
use actix_web::{web, App, HttpServer};
async fn index() -> &'static str {
"Hewwo Mr Obama"
}
#[actix_web::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let initial_key = read_key().await?.unwrap();
let (tx, rx) = rustls_channel_resolver::channel::<32>(initial_key);
let handle = actix_web::rt::spawn(async move {
let mut interval = actix_web::rt::time::interval(Duration::from_secs(30));
interval.tick().await;
loop {
interval.tick().await;
match read_key().await {
Ok(Some(key)) => tx.update(key),
Ok(None) => eprintln!("No key in keyfile"),
Err(e) => {
eprintln!("Failed to read key from fs {e}");
}
}
}
});
let server_config = rustls::ServerConfig::builder()
.with_safe_defaults()
.with_no_client_auth()
.with_cert_resolver(rx);
HttpServer::new(|| App::new().route("/", web::get().to(index)))
.bind_rustls_0_22("0.0.0.0:8443", server_config)?
.bind("0.0.0.0:8080")?
.run()
.await?;
handle.abort();
let _ = handle.await;
Ok(())
}
async fn read_key() -> Result<Option<rustls::sign::CertifiedKey>, Box<dyn std::error::Error>> {
let cert_bytes = tokio::fs::read("./out/example.crt").await?;
let certs = rustls_pemfile::certs(&mut cert_bytes.as_slice())
.collect::<Result<Vec<_>, _>>()?;
let key_bytes = tokio::fs::read("./out/example.key").await?;
let Some(private_key) = rustls_pemfile::private_key(&mut key_bytes.as_slice())? else {
return Ok(None);
};
let private_key =
rustls::crypto::ring::sign::any_supported_type(&private_key)?;
Ok(Some(rustls::sign::CertifiedKey::new(certs, private_key)))
}
Feel free to open issues for anything you find an issue with. Please note that any contributed code will be licensed under the AGPLv3.
Copyright © 2024 asonix
rustls-channel-resolver is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
rustls-channel-resolver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. This file is part of rustls-channel-resolver.
You should have received a copy of the GNU Affero General Public License along with rustls-channel-resolver. If not, see http://www.gnu.org/licenses/.