From 6ee26a58729d6e0ad3694c3c2ad00b776e7ba4d3 Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Wed, 30 Apr 2025 12:13:46 -0600 Subject: [PATCH] Remove stray println from ca --- idevice/src/ca.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/idevice/src/ca.rs b/idevice/src/ca.rs index 006c395..72aab2e 100644 --- a/idevice/src/ca.rs +++ b/idevice/src/ca.rs @@ -72,7 +72,6 @@ pub(crate) fn generate_certificates( private_key: Option, ) -> Result> { // Load device public key - println!("{}", std::str::from_utf8(device_public_key_pem)?); let device_public_key = RsaPublicKey::from_pkcs1_pem(std::str::from_utf8(device_public_key_pem)?)?;