inn-common

Crates.ioinn-common
lib.rsinn-common
version0.2.0
sourcesrc
created_at2022-05-27 02:16:47.788606
updated_at2023-07-20 09:12:45.297925
descriptionA common library for Inn
homepagehttps://github.com/black-mongo/inn
repositoryhttps://github.com/black-mongo/inn
max_upload_size
id594725
size24,448
Cam (yangcancai)

documentation

https://docs.rs/inn

README

inn-common - A common library for Inn

Report a Bug ยท Request a Feature . Ask a Question

Build and Test codecov License

Features

  • Generate certificate
  • Parse redis-protocol for inn-ci

Example

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);
     }
     
}

Contributing

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.

License

Inn is licensed as MIT

Commit count: 103

cargo fmt