├── .gitignore ├── .travis-ci-build ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── HACKING.md ├── Makefile.am ├── NEWS ├── README.md ├── TODO ├── Updating.md ├── cmake ├── config_posix.h.cmake ├── config_windows.h.cmake └── modules │ └── FindLIBNFC.cmake ├── configure.ac ├── contrib ├── Makefile.am ├── libfreefare_zsnippets.vim ├── libutil │ ├── Makefile.am │ ├── hexdump.c │ └── libutil.h └── win32 │ └── err.h ├── debian ├── .gitignore ├── README.Debian ├── README.source ├── changelog ├── compat ├── control ├── copyright ├── libfreefare-bin.install ├── libfreefare-dev.install ├── libfreefare-doc.install ├── libfreefare0.install ├── rules ├── source │ └── format └── watch ├── examples ├── CMakeLists.txt ├── Makefile.am ├── felica-lite-dump.c ├── felica-read-ndef.c ├── mifare-classic-format.c ├── mifare-classic-read-ndef.c ├── mifare-classic-write-ndef.c ├── mifare-desfire-access.c ├── mifare-desfire-create-ndef.c ├── mifare-desfire-ev1-configure-ats.c ├── mifare-desfire-ev1-configure-default-key.c ├── mifare-desfire-ev1-configure-random-uid.c ├── mifare-desfire-format.c ├── mifare-desfire-info.c ├── mifare-desfire-read-ndef.c ├── mifare-desfire-write-ndef.c ├── mifare-ultralight-info.c ├── mifare-ultralightc-diversify.c ├── ntag-detect.c ├── ntag-removeauth.c ├── ntag-setauth.c └── ntag-write.c ├── libfreefare.pc.in ├── libfreefare ├── CMakeLists.txt ├── Makefile.am ├── felica.c ├── freefare.3 ├── freefare.c ├── freefare.h ├── freefare_error.3 ├── freefare_internal.h ├── mad.3 ├── mad.c ├── mifare_application.3 ├── mifare_application.c ├── mifare_classic.3 ├── mifare_classic.c ├── mifare_desfire.3 ├── mifare_desfire.c ├── mifare_desfire_aid.3 ├── mifare_desfire_aid.c ├── mifare_desfire_crypto.c ├── mifare_desfire_error.c ├── mifare_desfire_key.3 ├── mifare_desfire_key.c ├── mifare_key_deriver.3 ├── mifare_key_deriver.c ├── mifare_ultralight.3 ├── mifare_ultralight.c ├── ntag21x.3 ├── ntag21x.c ├── ntag21x_error.c ├── tlv.3 └── tlv.c ├── m4 └── .gitignore └── test ├── Makefile.am ├── common ├── Makefile.am ├── mifare_desfire_auto_authenticate.c └── mifare_desfire_auto_authenticate.h ├── felica_fixture.c ├── fixture.h ├── mifare_classic_fixture.c ├── mifare_desfire_ev1_fixture.c ├── mifare_desfire_fixture.c ├── mifare_ultralight_fixture.c ├── run-test.sh ├── test_felica.c ├── test_freefare.c ├── test_mad.c ├── test_mifare_application.c ├── test_mifare_classic.c ├── test_mifare_classic_create_trailer_block.c ├── test_mifare_classic_mad.c ├── test_mifare_classic_sector_boundaries.c ├── test_mifare_desfire.c ├── test_mifare_desfire_aes.c ├── test_mifare_desfire_aid.c ├── test_mifare_desfire_des.c ├── test_mifare_desfire_ev1.c ├── test_mifare_desfire_ev1_3des.c ├── test_mifare_desfire_ev1_3k3des.c ├── test_mifare_desfire_ev1_aes.c ├── test_mifare_desfire_ev1_iso.c ├── test_mifare_desfire_key.c ├── test_mifare_key_deriver_an10922.c ├── test_mifare_ultralight.c └── test_tlv.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis-ci-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/.travis-ci-build -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/ChangeLog -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/HACKING.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/TODO -------------------------------------------------------------------------------- /Updating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/Updating.md -------------------------------------------------------------------------------- /cmake/config_posix.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/cmake/config_posix.h.cmake -------------------------------------------------------------------------------- /cmake/config_windows.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/cmake/config_windows.h.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLIBNFC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/cmake/modules/FindLIBNFC.cmake -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/libfreefare_zsnippets.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/contrib/libfreefare_zsnippets.vim -------------------------------------------------------------------------------- /contrib/libutil/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/contrib/libutil/Makefile.am -------------------------------------------------------------------------------- /contrib/libutil/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/contrib/libutil/hexdump.c -------------------------------------------------------------------------------- /contrib/libutil/libutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/contrib/libutil/libutil.h -------------------------------------------------------------------------------- /contrib/win32/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/contrib/win32/err.h -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/libfreefare-bin.install: -------------------------------------------------------------------------------- 1 | debian/tmp/usr/bin/mifare-* 2 | -------------------------------------------------------------------------------- /debian/libfreefare-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/libfreefare-dev.install -------------------------------------------------------------------------------- /debian/libfreefare-doc.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/libfreefare-doc.install -------------------------------------------------------------------------------- /debian/libfreefare0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/libfreefare0.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/debian/watch -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/felica-lite-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/felica-lite-dump.c -------------------------------------------------------------------------------- /examples/felica-read-ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/felica-read-ndef.c -------------------------------------------------------------------------------- /examples/mifare-classic-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-classic-format.c -------------------------------------------------------------------------------- /examples/mifare-classic-read-ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-classic-read-ndef.c -------------------------------------------------------------------------------- /examples/mifare-classic-write-ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-classic-write-ndef.c -------------------------------------------------------------------------------- /examples/mifare-desfire-access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-desfire-access.c -------------------------------------------------------------------------------- /examples/mifare-desfire-create-ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-desfire-create-ndef.c -------------------------------------------------------------------------------- /examples/mifare-desfire-ev1-configure-ats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-desfire-ev1-configure-ats.c -------------------------------------------------------------------------------- /examples/mifare-desfire-ev1-configure-default-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-desfire-ev1-configure-default-key.c -------------------------------------------------------------------------------- /examples/mifare-desfire-ev1-configure-random-uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-desfire-ev1-configure-random-uid.c -------------------------------------------------------------------------------- /examples/mifare-desfire-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-desfire-format.c -------------------------------------------------------------------------------- /examples/mifare-desfire-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-desfire-info.c -------------------------------------------------------------------------------- /examples/mifare-desfire-read-ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-desfire-read-ndef.c -------------------------------------------------------------------------------- /examples/mifare-desfire-write-ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-desfire-write-ndef.c -------------------------------------------------------------------------------- /examples/mifare-ultralight-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-ultralight-info.c -------------------------------------------------------------------------------- /examples/mifare-ultralightc-diversify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/mifare-ultralightc-diversify.c -------------------------------------------------------------------------------- /examples/ntag-detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/ntag-detect.c -------------------------------------------------------------------------------- /examples/ntag-removeauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/ntag-removeauth.c -------------------------------------------------------------------------------- /examples/ntag-setauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/ntag-setauth.c -------------------------------------------------------------------------------- /examples/ntag-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/examples/ntag-write.c -------------------------------------------------------------------------------- /libfreefare.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare.pc.in -------------------------------------------------------------------------------- /libfreefare/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/CMakeLists.txt -------------------------------------------------------------------------------- /libfreefare/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/Makefile.am -------------------------------------------------------------------------------- /libfreefare/felica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/felica.c -------------------------------------------------------------------------------- /libfreefare/freefare.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/freefare.3 -------------------------------------------------------------------------------- /libfreefare/freefare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/freefare.c -------------------------------------------------------------------------------- /libfreefare/freefare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/freefare.h -------------------------------------------------------------------------------- /libfreefare/freefare_error.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/freefare_error.3 -------------------------------------------------------------------------------- /libfreefare/freefare_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/freefare_internal.h -------------------------------------------------------------------------------- /libfreefare/mad.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mad.3 -------------------------------------------------------------------------------- /libfreefare/mad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mad.c -------------------------------------------------------------------------------- /libfreefare/mifare_application.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_application.3 -------------------------------------------------------------------------------- /libfreefare/mifare_application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_application.c -------------------------------------------------------------------------------- /libfreefare/mifare_classic.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_classic.3 -------------------------------------------------------------------------------- /libfreefare/mifare_classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_classic.c -------------------------------------------------------------------------------- /libfreefare/mifare_desfire.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_desfire.3 -------------------------------------------------------------------------------- /libfreefare/mifare_desfire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_desfire.c -------------------------------------------------------------------------------- /libfreefare/mifare_desfire_aid.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_desfire_aid.3 -------------------------------------------------------------------------------- /libfreefare/mifare_desfire_aid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_desfire_aid.c -------------------------------------------------------------------------------- /libfreefare/mifare_desfire_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_desfire_crypto.c -------------------------------------------------------------------------------- /libfreefare/mifare_desfire_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_desfire_error.c -------------------------------------------------------------------------------- /libfreefare/mifare_desfire_key.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_desfire_key.3 -------------------------------------------------------------------------------- /libfreefare/mifare_desfire_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_desfire_key.c -------------------------------------------------------------------------------- /libfreefare/mifare_key_deriver.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_key_deriver.3 -------------------------------------------------------------------------------- /libfreefare/mifare_key_deriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_key_deriver.c -------------------------------------------------------------------------------- /libfreefare/mifare_ultralight.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_ultralight.3 -------------------------------------------------------------------------------- /libfreefare/mifare_ultralight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/mifare_ultralight.c -------------------------------------------------------------------------------- /libfreefare/ntag21x.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/ntag21x.3 -------------------------------------------------------------------------------- /libfreefare/ntag21x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/ntag21x.c -------------------------------------------------------------------------------- /libfreefare/ntag21x_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/ntag21x_error.c -------------------------------------------------------------------------------- /libfreefare/tlv.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/tlv.3 -------------------------------------------------------------------------------- /libfreefare/tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/libfreefare/tlv.c -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/common/Makefile.am -------------------------------------------------------------------------------- /test/common/mifare_desfire_auto_authenticate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/common/mifare_desfire_auto_authenticate.c -------------------------------------------------------------------------------- /test/common/mifare_desfire_auto_authenticate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/common/mifare_desfire_auto_authenticate.h -------------------------------------------------------------------------------- /test/felica_fixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/felica_fixture.c -------------------------------------------------------------------------------- /test/fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/fixture.h -------------------------------------------------------------------------------- /test/mifare_classic_fixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/mifare_classic_fixture.c -------------------------------------------------------------------------------- /test/mifare_desfire_ev1_fixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/mifare_desfire_ev1_fixture.c -------------------------------------------------------------------------------- /test/mifare_desfire_fixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/mifare_desfire_fixture.c -------------------------------------------------------------------------------- /test/mifare_ultralight_fixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/mifare_ultralight_fixture.c -------------------------------------------------------------------------------- /test/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/run-test.sh -------------------------------------------------------------------------------- /test/test_felica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_felica.c -------------------------------------------------------------------------------- /test/test_freefare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_freefare.c -------------------------------------------------------------------------------- /test/test_mad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mad.c -------------------------------------------------------------------------------- /test/test_mifare_application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_application.c -------------------------------------------------------------------------------- /test/test_mifare_classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_classic.c -------------------------------------------------------------------------------- /test/test_mifare_classic_create_trailer_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_classic_create_trailer_block.c -------------------------------------------------------------------------------- /test/test_mifare_classic_mad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_classic_mad.c -------------------------------------------------------------------------------- /test/test_mifare_classic_sector_boundaries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_classic_sector_boundaries.c -------------------------------------------------------------------------------- /test/test_mifare_desfire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_desfire.c -------------------------------------------------------------------------------- /test/test_mifare_desfire_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_desfire_aes.c -------------------------------------------------------------------------------- /test/test_mifare_desfire_aid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_desfire_aid.c -------------------------------------------------------------------------------- /test/test_mifare_desfire_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_desfire_des.c -------------------------------------------------------------------------------- /test/test_mifare_desfire_ev1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_desfire_ev1.c -------------------------------------------------------------------------------- /test/test_mifare_desfire_ev1_3des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_desfire_ev1_3des.c -------------------------------------------------------------------------------- /test/test_mifare_desfire_ev1_3k3des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_desfire_ev1_3k3des.c -------------------------------------------------------------------------------- /test/test_mifare_desfire_ev1_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_desfire_ev1_aes.c -------------------------------------------------------------------------------- /test/test_mifare_desfire_ev1_iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_desfire_ev1_iso.c -------------------------------------------------------------------------------- /test/test_mifare_desfire_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_desfire_key.c -------------------------------------------------------------------------------- /test/test_mifare_key_deriver_an10922.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_key_deriver_an10922.c -------------------------------------------------------------------------------- /test/test_mifare_ultralight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_mifare_ultralight.c -------------------------------------------------------------------------------- /test/test_tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libfreefare/HEAD/test/test_tlv.c --------------------------------------------------------------------------------