From cd2cdf77f6c95d5cb061b08e7d04284c6057e640 Mon Sep 17 00:00:00 2001 From: Peter Marschall Date: Sat, 26 May 2012 09:46:32 +0200 Subject: [PATCH] opensc-explorer: explicitly mention key types --- src/tools/opensc-explorer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/opensc-explorer.c b/src/tools/opensc-explorer.c index dc45b848..3adfac30 100644 --- a/src/tools/opensc-explorer.c +++ b/src/tools/opensc-explorer.c @@ -143,7 +143,7 @@ static struct command cmds[] = { "rm", "", "remove an EF/DF" }, { do_verify, - "verify", " []", + "verify", "{CHV|KEY|AUT|PRO} []", "present a PIN or key to the card" }, { do_pace, "pace", "{pin|can|puk|mrz} []", @@ -955,7 +955,7 @@ static int do_verify(int argc, char **argv) printf("Code correct.\n"); return 0; usage: - printf("Usage: verify []\n"); + printf("Usage: verify {CHV|KEY|AUT|PRO} []\n"); printf("Possible values of :\n"); for (i = 0; typeNames[i].str; i++) printf("\t%s\n", typeNames[i].str);