feat: updates
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
use clap::{App, Arg, ArgMatches, SubCommand};
|
||||
use rust_util::{util_msg, XResult};
|
||||
use rust_util::XResult;
|
||||
use rust_util::util_clap::{Command, CommandError};
|
||||
|
||||
use crate::hmacutil;
|
||||
use crate::{cmdutil, hmacutil};
|
||||
|
||||
pub struct CommandImpl;
|
||||
|
||||
@@ -19,12 +19,11 @@ impl Command for CommandImpl {
|
||||
.arg(Arg::with_name("sha256").short("2").long("sha256").help("Output SHA256"))
|
||||
.arg(Arg::with_name("sha384").short("3").long("sha384").help("Output SHA256"))
|
||||
.arg(Arg::with_name("sha512").short("5").long("sha512").help("Output SHA256"))
|
||||
.arg(Arg::with_name("json").long("json").help("JSON output"))
|
||||
.arg(cmdutil::build_json_arg())
|
||||
}
|
||||
|
||||
fn run(&self, _arg_matches: &ArgMatches, sub_arg_matches: &ArgMatches) -> CommandError {
|
||||
let json_output = sub_arg_matches.is_present("json");
|
||||
if json_output { util_msg::set_logger_std_out(false); }
|
||||
let json_output = cmdutil::check_json_output(sub_arg_matches);
|
||||
|
||||
let variable = sub_arg_matches.is_present("variable");
|
||||
let secret_bytes = get_secret_bytes(sub_arg_matches)?;
|
||||
|
||||
Reference in New Issue
Block a user