FreeCalypso > hg > fc-pcsc-tools
view uicc/main.c @ 74:8562d8508cf2
grcard2-set-{adm,super}-hex commands implemented
It appears that GrcardSIM2 cards allow arbitrary 64-bit keys
for ADM and SUPER ADM, not necessarily consisting of ASCII digits
like the specs require for standard PIN and PUK, and pySim-prog.py
in fact sets the ADM key to 4444444444444444 in hex by default,
which is not an ASCII digit string. If the cards allow such keys,
we need to support them too.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Tue, 16 Feb 2021 04:10:36 +0000 |
| parents | acf343dace04 |
| children |
line wrap: on
line source
#include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <pcsclite.h> #include <winscard.h> #include "cardif.h" main(argc, argv) char **argv; { extern int optind; char command[512]; int rc; parse_global_options(argc, argv); setup_pcsc_context(); get_reader_list(); select_reader_by_num(); if (argc <= optind) printf("Card reader name: %s\n", selected_reader); connect_to_card(); if (argc > optind) { rc = dispatch_ready_argv(argc - optind, argv + optind); if (rc) error_exit(); else good_exit(); } retrieve_atr(); for (;;) { if (isatty(0)) { fputs("uicc> ", stdout); fflush(stdout); } if (!fgets(command, sizeof command, stdin)) good_exit(); simtool_dispatch_cmd(command, 0); } }
