Remove unused fields

This commit is contained in:
Alex Page 2023-06-19 17:00:47 -04:00
parent ca8e830f0a
commit d86b41e039

View file

@ -60,13 +60,11 @@ pub struct Options {
pub struct Cli { pub struct Cli {
options: Options, options: Options,
keys: serde_json::Value,
private_key: BigNum, private_key: BigNum,
gen_order: BigNum, gen_order: BigNum,
gen_point: EcPoint, gen_point: EcPoint,
pub_point: EcPoint, pub_point: EcPoint,
e_curve: EcGroup, e_curve: EcGroup,
product_key: Option<String>,
count: u32, count: u32,
} }
@ -117,13 +115,11 @@ impl Cli {
Ok(Self { Ok(Self {
options, options,
keys,
private_key, private_key,
gen_order, gen_order,
gen_point, gen_point,
pub_point, pub_point,
e_curve, e_curve,
product_key: None,
count: 0, count: 0,
}) })
} }