-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This takes what was formerly `rcgen/src/main.rs` and moves it to the examples folder as `simple.rs`. It was split off from #185 Co-authored-by: tbro <tbro@users.noreply.github.com>
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
use rcgen::{date_time_ymd, Certificate, CertificateParams, DistinguishedName, DnType, SanType}; | ||
use std::fs; | ||
|
||
fn main() -> Result<(), Box<dyn std::error::Error>> { | ||
let mut params: CertificateParams = Default::default(); | ||
params.not_before = date_time_ymd(1975, 1, 1); | ||
params.not_after = date_time_ymd(4096, 1, 1); | ||
params.distinguished_name = DistinguishedName::new(); | ||
params | ||
.distinguished_name | ||
.push(DnType::OrganizationName, "Crab widgits SE"); | ||
params | ||
.distinguished_name | ||
.push(DnType::CommonName, "Master Cert"); | ||
params.subject_alt_names = vec![ | ||
SanType::DnsName("crabs.crabs".to_string()), | ||
SanType::DnsName("localhost".to_string()), | ||
]; | ||
|
||
let cert = Certificate::from_params(params)?; | ||
|
||
let pem_serialized = cert.serialize_pem()?; | ||
let pem = pem::parse(&pem_serialized)?; | ||
let der_serialized = pem.contents(); | ||
println!("{pem_serialized}"); | ||
println!("{}", cert.serialize_private_key_pem()); | ||
fs::create_dir_all("certs/")?; | ||
fs::write("certs/cert.pem", pem_serialized.as_bytes())?; | ||
fs::write("certs/cert.der", der_serialized)?; | ||
fs::write("certs/key.pem", cert.serialize_private_key_pem().as_bytes())?; | ||
fs::write("certs/key.der", cert.serialize_private_key_der())?; | ||
Ok(()) | ||
} |