Crates.io | inn-common |
lib.rs | inn-common |
version | 0.2.0 |
source | src |
created_at | 2022-05-27 02:16:47.788606 |
updated_at | 2023-07-20 09:12:45.297925 |
description | A common library for Inn |
homepage | https://github.com/black-mongo/inn |
repository | https://github.com/black-mongo/inn |
max_upload_size | |
id | 594725 |
size | 24,448 |
use inn_common::genca::CertAuthority;
#[tokio::main]
async fn main(){
// Certificate Authority
CertAuthority::gen_ca("Inn Fake Ca", "Inn", "China", "Shenzhen", "ca/ca");
let authority = CertAuthority::new(
"ca/ca/cacert.pem",
"ca/ca/cakey.pem",
);
// Generate Certificate with `ca/ca/cakey.pem` private key and sign with `ca/ca/cakey.pem`
let cert = cert_authority.gen_cert_pem("www.example.com", 365);
println!("{}", cert);
if let Err(err) =
std::fs::write(format!("{}/{}.cert.pem", ca.output, ca.host), cert)
{
eprintln!("private key file write failed: {}", err);
}
}
First off, thanks for taking the time to contribute! Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are greatly appreciated.
Please try to create bug reports that are:
Reproducible. Include steps to reproduce the problem.
Specific. Include as much detail as possible: which version, what environment, etc.
Unique. Do not duplicate existing opened issues.
Scoped to a Single Bug. One bug per report.
Inn is licensed as MIT