FreeCalypso > hg > fc-pcsc-tools
view simtool/writeops.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 | 2071b28cd0c7 |
| children |
line wrap: on
line source
#include <sys/types.h> #include <string.h> #include <strings.h> #include <stdio.h> #include <stdlib.h> #include "simresp.h" update_bin_op(offset, data, len) unsigned offset, len; u_char *data; { u_char cmd[260]; int rc; /* UPDATE BINARY command APDU */ cmd[0] = 0xA0; cmd[1] = 0xD6; cmd[2] = offset >> 8; cmd[3] = offset; cmd[4] = len; bcopy(data, cmd + 5, len); rc = apdu_exchange(cmd, len + 5); if (rc < 0) return(rc); if (sim_resp_sw != 0x9000) { fprintf(stderr, "bad SW response to UPDATE BINARY: %04X\n", sim_resp_sw); return(-1); } return(0); } update_rec_op(recno, mode, data, len) unsigned recno, mode, len; u_char *data; { u_char cmd[260]; int rc; /* UPDATE RECORD command APDU */ cmd[0] = 0xA0; cmd[1] = 0xDC; cmd[2] = recno; cmd[3] = mode; cmd[4] = len; bcopy(data, cmd + 5, len); rc = apdu_exchange(cmd, len + 5); if (rc < 0) return(rc); if (sim_resp_sw != 0x9000) { fprintf(stderr, "bad SW response to UPDATE RECORD: %04X\n", sim_resp_sw); return(-1); } return(0); }
