]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Remove accidentally left debug statements from ec.c master
authorChris <cryptophoto@gmail.com>
Sat, 28 Jun 2025 10:49:11 +0000 (20:49 +1000)
committerTomas Mraz <tomas@openssl.org>
Tue, 1 Jul 2025 18:51:23 +0000 (20:51 +0200)
CLA: trivial

- Cleaned up hardcoded debug statements that were inadvertently
  left in the open source distribution
- No functional changes to the EC key processing logic

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/27921)

apps/ec.c

index 677876ccc90e309d107e555fd497570283cf25c8..1df769fdf5755246a568944ff96d47a4568a3145 100644 (file)
--- a/apps/ec.c
+++ b/apps/ec.c
@@ -170,8 +170,6 @@ int ec_main(int argc, char **argv)
         goto end;
     }
 
-    BIO_printf(bio_err, "read EC key\n");
-
     if (pubin)
         eckey = load_pubkey(infile, informat, 1, passin, e, "public key");
     else
@@ -240,7 +238,6 @@ int ec_main(int argc, char **argv)
         const char *output_type = outformat == FORMAT_ASN1 ? "DER" : "PEM";
         const char *output_structure = "type-specific";
 
-        BIO_printf(bio_err, "writing EC key\n");
         if (param_out) {
             selection = OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS;
         } else if (pubin || pubout) {