From d86b41e039b23d1711b41edd94c5af83d358600b Mon Sep 17 00:00:00 2001 From: Alex Page Date: Mon, 19 Jun 2023 17:00:47 -0400 Subject: [PATCH] Remove unused fields --- src/cli.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index c2fb810..a5e57d3 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -60,13 +60,11 @@ pub struct Options { pub struct Cli { options: Options, - keys: serde_json::Value, private_key: BigNum, gen_order: BigNum, gen_point: EcPoint, pub_point: EcPoint, e_curve: EcGroup, - product_key: Option, count: u32, } @@ -117,13 +115,11 @@ impl Cli { Ok(Self { options, - keys, private_key, gen_order, gen_point, pub_point, e_curve, - product_key: None, count: 0, }) }