├── .gitignore ├── AUTHORS ├── Android.mk ├── COPYING ├── ChangeLog ├── INSTALL ├── LICENSE ├── Makefile.am ├── NEWS ├── README ├── TODO ├── config.h ├── configure.ac ├── m4 └── .empty └── src ├── Makefile.am ├── crapto1.c ├── crapto1.h ├── crypto1.c ├── mfcuk.c ├── mfcuk.h ├── mfcuk_finger.c ├── mfcuk_finger.h ├── mfcuk_mifare.c ├── mfcuk_mifare.h ├── mfcuk_utils.c ├── mfcuk_utils.h ├── mifare.c ├── mifare.h ├── nfc-utils.c ├── nfc-utils.h ├── xgetopt.c └── xgetopt.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/AUTHORS -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/Android.mk -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/TODO -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/config.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/configure.ac -------------------------------------------------------------------------------- /m4/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/crapto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/crapto1.c -------------------------------------------------------------------------------- /src/crapto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/crapto1.h -------------------------------------------------------------------------------- /src/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/crypto1.c -------------------------------------------------------------------------------- /src/mfcuk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/mfcuk.c -------------------------------------------------------------------------------- /src/mfcuk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/mfcuk.h -------------------------------------------------------------------------------- /src/mfcuk_finger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/mfcuk_finger.c -------------------------------------------------------------------------------- /src/mfcuk_finger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/mfcuk_finger.h -------------------------------------------------------------------------------- /src/mfcuk_mifare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/mfcuk_mifare.c -------------------------------------------------------------------------------- /src/mfcuk_mifare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/mfcuk_mifare.h -------------------------------------------------------------------------------- /src/mfcuk_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/mfcuk_utils.c -------------------------------------------------------------------------------- /src/mfcuk_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/mfcuk_utils.h -------------------------------------------------------------------------------- /src/mifare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/mifare.c -------------------------------------------------------------------------------- /src/mifare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/mifare.h -------------------------------------------------------------------------------- /src/nfc-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/nfc-utils.c -------------------------------------------------------------------------------- /src/nfc-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/nfc-utils.h -------------------------------------------------------------------------------- /src/xgetopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/xgetopt.c -------------------------------------------------------------------------------- /src/xgetopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelroland/mfcuk-android/HEAD/src/xgetopt.h --------------------------------------------------------------------------------