Remove stray println from ca

This commit is contained in:
Jackson Coxson
2025-04-30 12:13:46 -06:00
parent e972352cd0
commit 6ee26a5872

View File

@@ -72,7 +72,6 @@ pub(crate) fn generate_certificates(
private_key: Option<RsaPrivateKey>, private_key: Option<RsaPrivateKey>,
) -> Result<CaReturn, Box<dyn std::error::Error>> { ) -> Result<CaReturn, Box<dyn std::error::Error>> {
// Load device public key // Load device public key
println!("{}", std::str::from_utf8(device_public_key_pem)?);
let device_public_key = let device_public_key =
RsaPublicKey::from_pkcs1_pem(std::str::from_utf8(device_public_key_pem)?)?; RsaPublicKey::from_pkcs1_pem(std::str::from_utf8(device_public_key_pem)?)?;