From 1eacefc83c971ff1598973180e6fbb30c8e1b4be Mon Sep 17 00:00:00 2001 From: okir Date: Sat, 18 Oct 2003 12:41:32 +0000 Subject: [PATCH] - previous patch was bogus/incomplete git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1539 c6295689-39f2-0310-b995-f0e70906c6a9 --- src/tools/opensc-explorer.c | 36 +++++++++++------------------------- 1 file changed, 11 insertions(+), 25 deletions(-) diff --git a/src/tools/opensc-explorer.c b/src/tools/opensc-explorer.c index f6267df5..9b53fd2a 100644 --- a/src/tools/opensc-explorer.c +++ b/src/tools/opensc-explorer.c @@ -594,53 +594,40 @@ int do_verify(int argc, char **argv) { "PRO", SC_AC_PRO }, { NULL, -1 } }; - int i, r, tries_left = -1; + int i, type = -1, ref, r, tries_left = -1; u8 buf[30]; const char *s; size_t buflen = sizeof(buf); - struct sc_pin_cmd_data data; - + if (argc < 1 || argc > 2) goto usage; - - memset(&data, 0, sizeof(data)); - data.cmd = SC_PIN_CMD_VERIFY; - - data.pin_type = -1; for (i = 0; typeNames[i].name; i++) { if (strncasecmp(argv[0], typeNames[i].name, 3) == 0) { - data.pin_type = typeNames[i].type; + type = typeNames[i].type; break; } } - if (data.pin_type == -1) { + if (type == -1) { printf("Invalid type.\n"); goto usage; } - if (sscanf(argv[0] + 3, "%d", &data.pin_reference) != 1) { + if (sscanf(argv[0] + 3, "%d", &ref) != 1) { printf("Invalid key reference.\n"); goto usage; } - if (argc < 2) { - if (!(card->reader->slot[0].capabilities & SC_SLOT_CAP_PIN_PAD)) { - printf("Card reader or driver doesn't support PIN PAD\n"); - return -1; - } - printf("Please enter PIN on the reader's pin pad.\n"); - data.pin1.prompt = "Please enter PIN"; - data.flags |= SC_PIN_CMD_USE_PINPAD; - } else if (argv[1][0] == '"') { + /* just return the retry counter */ + buflen = 0; + } + if (argv[1][0] == '"') { for (s=argv[1]+1, i=0; i < sizeof(buf) && *s && *s != '"';i++) buf[i] = *s++; - data.pin1.data = buf; - data.pin1.len = i; + buflen = i; } else if (sc_hex_to_bin(argv[1], buf, &buflen) != 0) { printf("Invalid key value.\n"); goto usage; } - r = sc_pin_cmd(card, &data, &tries_left); - + r = sc_verify(card, type, ref, buf, buflen, &tries_left); if (r) { if (r == SC_ERROR_PIN_CODE_INCORRECT) { if (tries_left >= 0) @@ -659,7 +646,6 @@ usage: for (i = 0; typeNames[i].name; i++) printf("\t%s\n", typeNames[i].name); printf("Example: verify CHV2 31:32:33:34:00:00:00:00\n"); - printf("If key is omitted, card reader's keypad will be used to collect PIN.\n"); return -1; }