FreeCalypso > hg > fc-pcsc-tools
view Makefile @ 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 | be946be3f9a7 |
| children | f064dbcc5f41 |
line wrap: on
line source
PROGDIR=misc simtool uicc LIBDIR= libcommon SUBDIR= ${PROGDIR} ${LIBDIR} all: ${SUBDIR} misc: libcommon simtool: libcommon uicc: libcommon ${SUBDIR}: FRC cd $@; ${MAKE} ${MFLAGS} clean: FRC rm -f a.out core errs for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done install: FRC for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done FRC:
