We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 987fc42 commit 8156464Copy full SHA for 8156464
src/cli.rs
@@ -696,6 +696,16 @@ fn declare_subcommands(pre_flight_settings: PreFlightSettings) -> [Command; 12]
696
.required(false)
697
.default_value(""),
698
)
699
+ .arg(
700
+ Arg::new("hashing_algorithm")
701
+ .long("hashing-algorithm")
702
+ .required(false)
703
+ .conflicts_with("password_hash")
704
+ .requires("password")
705
+ .value_parser(value_parser!(HashingAlgorithm))
706
+ .default_value("SHA256")
707
+ .help("The hashing algorithm to use: SHA256 or SHA512"),
708
+ )
709
.arg(
710
Arg::new("tags")
711
.long("tags")
0 commit comments