1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
use std::error::Error as StdError;
use rcgen::{
Certificate, CertificateParams, CertifiedKey, DnType, DnValue, ExtendedKeyUsagePurpose, IsCa,
KeyPair, KeyUsagePurpose, SignatureAlgorithm,
};
#[cfg_attr(not(feature = "ring"), allow(dead_code))]
pub fn make_end_entity(
ekus: Vec<ExtendedKeyUsagePurpose>,
org_name: impl Into<DnValue>,
issuer: &Certificate,
issuer_key: &KeyPair,
) -> Result<CertifiedKey, Box<dyn StdError>> {
let key_pair = KeyPair::generate_for(RCGEN_SIGNATURE_ALG)?;
Ok(CertifiedKey {
cert: end_entity_params(vec!["example.com".into()], org_name, ekus)?
.signed_by(&key_pair, issuer, issuer_key)?,
key_pair,
})
}
pub fn make_issuer(org_name: impl Into<String>) -> Result<CertifiedKey, Box<dyn StdError>> {
let key_pair = KeyPair::generate_for(RCGEN_SIGNATURE_ALG)?;
Ok(CertifiedKey {
cert: issuer_params(org_name)?.self_signed(&key_pair)?,
key_pair,
})
}
/// Populate a [CertificateParams] that describes an unconstrained issuer certificate.
///
/// The given `org_name` is used as the organization distinguished subject name.
pub fn issuer_params(org_name: impl Into<DnValue>) -> Result<CertificateParams, Box<dyn StdError>> {
let mut ca_params = CertificateParams::new(Vec::new())?;
ca_params
.distinguished_name
.push(DnType::OrganizationName, org_name);
ca_params.is_ca = IsCa::Ca(rcgen::BasicConstraints::Unconstrained);
ca_params.key_usages = vec![KeyUsagePurpose::KeyCertSign];
Ok(ca_params)
}
pub fn end_entity_params(
subject_alt_names: Vec<String>,
org_name: impl Into<DnValue>,
ekus: Vec<ExtendedKeyUsagePurpose>,
) -> Result<CertificateParams, Box<dyn StdError>> {
let mut ee_params = CertificateParams::new(subject_alt_names)?;
ee_params.is_ca = IsCa::ExplicitNoCa;
ee_params.extended_key_usages = ekus;
ee_params
.distinguished_name
.push(DnType::OrganizationName, org_name);
Ok(ee_params)
}
/// Signature algorithm used by certificates and parameters generated using the test utils helpers.
static RCGEN_SIGNATURE_ALG: &SignatureAlgorithm = &rcgen::PKCS_ECDSA_P256_SHA256;
|