FreeCalypso > hg > fc-sim-tools
view simtool/chvfunc.c @ 93:6041c601304d
fcsim1-mkprov: revert OTA key addition
It appears that GrcardSIM2 cards (which is what we got for FCSIM1)
do not support OTA after all, contrary to what we were previously
led to believe by some tech support emails from Grcard - apparently
those support emails and OTA descriptions referred to some other
card model(s).
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 21 Apr 2021 05:38:39 +0000 |
parents | c83ec3bd9d67 |
children |
line wrap: on
line source
/* * This module implements a functional interface to CHV commands, * intended for high-level wrappers like sws-*. */ #include <sys/types.h> #include <stdio.h> #include "simresp.h" verify_chv_func(p2, pin) unsigned p2; char *pin; { u_char cmd[13]; int rc; /* VERIFY CHV command APDU */ cmd[0] = 0xA0; cmd[1] = 0x20; cmd[2] = 0x00; cmd[3] = p2; cmd[4] = 8; rc = encode_pin_entry(pin, cmd + 5); if (rc < 0) return(rc); rc = apdu_exchange(cmd, 13); if (rc < 0) return(rc); if (sim_resp_sw != 0x9000) { fprintf(stderr, "bad SW response to VERIFY CHV: %04X\n", sim_resp_sw); return(-1); } return(0); } disable_chv_func(p2, pin) unsigned p2; char *pin; { u_char cmd[13]; int rc; /* DISABLE CHV command APDU */ cmd[0] = 0xA0; cmd[1] = 0x26; cmd[2] = 0x00; cmd[3] = p2; cmd[4] = 8; rc = encode_pin_entry(pin, cmd + 5); if (rc < 0) return(rc); rc = apdu_exchange(cmd, 13); if (rc < 0) return(rc); if (sim_resp_sw != 0x9000 && sim_resp_sw != 0x9808) { fprintf(stderr, "bad SW response to DISABLE CHV: %04X\n", sim_resp_sw); return(-1); } return(0); } enable_chv_func(p2, pin) unsigned p2; char *pin; { u_char cmd[13]; int rc; /* ENABLE CHV command APDU */ cmd[0] = 0xA0; cmd[1] = 0x28; cmd[2] = 0x00; cmd[3] = p2; cmd[4] = 8; rc = encode_pin_entry(pin, cmd + 5); if (rc < 0) return(rc); rc = apdu_exchange(cmd, 13); if (rc < 0) return(rc); if (sim_resp_sw != 0x9000 && sim_resp_sw != 0x9808) { fprintf(stderr, "bad SW response to ENABLE CHV: %04X\n", sim_resp_sw); return(-1); } return(0); }