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