feat: v1.12.0
This commit is contained in:
@@ -13,6 +13,18 @@ pub fn build_pin_arg() -> Arg<'static, 'static> {
|
||||
Arg::with_name("pin").short("p").long("pin").takes_value(true).help("PIV card user PIN")
|
||||
}
|
||||
|
||||
pub fn build_alg_arg() -> Arg<'static, 'static> {
|
||||
Arg::with_name("alg").long("alg").takes_value(true).required(true).help("Algorithm, e.g. RS256, ES256, ES384")
|
||||
}
|
||||
|
||||
pub fn build_parameter_arg() -> Arg<'static, 'static> {
|
||||
Arg::with_name("parameter").long("parameter").takes_value(true).required(true).help("Parameter")
|
||||
}
|
||||
|
||||
pub fn build_message_arg() -> Arg<'static, 'static> {
|
||||
Arg::with_name("message-base64").long("message-base64").takes_value(true).required(true).help("Message in base64")
|
||||
}
|
||||
|
||||
pub fn build_no_pin_arg() -> Arg<'static, 'static> {
|
||||
Arg::with_name("no-pin").long("no-pin").help("No PIN")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user