From b02c6ece266e0f29dbcec87c799eb6b468bc8c23 Mon Sep 17 00:00:00 2001 From: Jean-Michel Picod Date: Mon, 4 Nov 2024 10:00:29 +0100 Subject: [PATCH] Fix confusion between base10 and base16 identifiers --- client/src/cmdpiv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdpiv.c b/client/src/cmdpiv.c index 1a6288b14..347e91246 100644 --- a/client/src/cmdpiv.c +++ b/client/src/cmdpiv.c @@ -897,7 +897,7 @@ static int CmdPIVAuthenticateSign(const char *Cmd) { arg_str0(NULL, "aid", "", "Applet ID to select. By default A0000003080000100 will be used"), arg_str1(NULL, "nonce", "", "Nonce to sign."), arg_int0(NULL, "slot", "", "Slot number. Default will be 0x9E (card auth cert)."), - arg_int0(NULL, "alg", "", "Algorithm to use to sign. Example values: 06=RSA-1024, 07=RSA-2048, 11=ECC-P256 (default), 14=ECC-P384"), + arg_int0(NULL, "alg", "", "Algorithm to use to sign. Example values: 06=RSA-1024, 07=RSA-2048, 17=ECC-P256 (default), 20=ECC-P384"), arg_param_end }; CLIExecWithReturn(ctx, Cmd, argtable, true);