├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── README.md ├── TODO ├── configure.ac ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── manpages ├── rules ├── source │ └── format └── watch ├── 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/nfc-tools/mfoc/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | AUTHORS 2 | -------------------------------------------------------------------------------- /debian/manpages: -------------------------------------------------------------------------------- 1 | src/mfoc.1 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/debian/watch -------------------------------------------------------------------------------- /m4/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/crapto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/crapto1.c -------------------------------------------------------------------------------- /src/crapto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/crapto1.h -------------------------------------------------------------------------------- /src/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/crypto1.c -------------------------------------------------------------------------------- /src/mfoc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/mfoc.1 -------------------------------------------------------------------------------- /src/mfoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/mfoc.c -------------------------------------------------------------------------------- /src/mfoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/mfoc.h -------------------------------------------------------------------------------- /src/mifare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/mifare.c -------------------------------------------------------------------------------- /src/mifare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/mifare.h -------------------------------------------------------------------------------- /src/nfc-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/nfc-utils.c -------------------------------------------------------------------------------- /src/nfc-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/nfc-utils.h -------------------------------------------------------------------------------- /src/slre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/slre.c -------------------------------------------------------------------------------- /src/slre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/mfoc/HEAD/src/slre.h --------------------------------------------------------------------------------