Start support of ISO files for Mifare DESFire EV1.
Fixes issue 57 New API functions: * mifare_desfire_create_application_iso() * mifare_desfire_create_application_3k3des_iso() * mifare_desfire_create_application_aes_iso() * mifare_desfire_get_df_names() Plus unit test to check this.
This commit is contained in:
parent
c7dc9f0ccc
commit
b41f93cd5b
4 changed files with 185 additions and 7 deletions
|
|
@ -66,6 +66,7 @@ test_mifare_desfire_ev1_la_SOURCES = 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 \
|
||||
mifare_desfire_ev1_fixture.c \
|
||||
mifare_desfire_ev1_fixture.h
|
||||
test_mifare_desfire_ev1_la_LIBADD = $(top_builddir)/libfreefare/libfreefare.la \
|
||||
|
|
@ -88,4 +89,7 @@ echo-cutter:
|
|||
EXTRA_DIST = run-test.sh
|
||||
CLEANFILES = *.gcno
|
||||
|
||||
update:
|
||||
$(MAKE) $(AM_MAKEFLAGS) $(check_LTLIBRARIES)
|
||||
|
||||
endif
|
||||
|
|
|
|||
99
test/test_mifare_desfire_ev1_iso.c
Normal file
99
test/test_mifare_desfire_ev1_iso.c
Normal file
|
|
@ -0,0 +1,99 @@
|
|||
/*-
|
||||
* Copyright (C) 2011, Romain Tartiere.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU Lesser General Public License as published by the
|
||||
* Free Software Foundation, either version 3 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#include <cutter.h>
|
||||
|
||||
#include <freefare.h>
|
||||
#include "freefare_internal.h"
|
||||
|
||||
#include "mifare_desfire_ev1_fixture.h"
|
||||
#include "common/mifare_desfire_auto_authenticate.h"
|
||||
|
||||
#define cut_assert_success(last_command) \
|
||||
do { \
|
||||
cut_assert_equal_int (OPERATION_OK, mifare_desfire_last_picc_error (tag), cut_message ("PICC replied %s", mifare_desfire_error_lookup (mifare_desfire_last_picc_error (tag)))); \
|
||||
cut_assert_not_equal_int (-1, res, cut_message ("Wrong return value")); \
|
||||
} while (0)
|
||||
|
||||
void
|
||||
test_mifare_desfire_ev1_iso (void)
|
||||
{
|
||||
int res;
|
||||
MifareDESFireKey key;
|
||||
|
||||
mifare_desfire_auto_authenticate (tag, 0);
|
||||
|
||||
res = mifare_desfire_format_picc (tag);
|
||||
cut_assert_equal_int (res, 0, cut_message ("mifare_desfire_format_picc()"));
|
||||
|
||||
MifareDESFireDF *dfs;
|
||||
size_t count;
|
||||
res = mifare_desfire_get_df_names (tag, &dfs, &count);
|
||||
cut_assert_equal_int (res, 0, cut_message ("mifare_desfire_get_df_names()"));
|
||||
cut_assert_equal_int (count, 0, cut_message ("Wrong DF count"));
|
||||
cut_assert_null (dfs, cut_message ("DF should be NULL"));
|
||||
|
||||
MifareDESFireAID aid = mifare_desfire_aid_new (0x111110);
|
||||
res = mifare_desfire_create_application_iso (tag, aid, 0xFF, 1, 0, 0x111F, NULL, 0);
|
||||
cut_assert_success ("mifare_desfire_create_application_iso");
|
||||
free (aid);
|
||||
|
||||
uint8_t app2[] = "App2";
|
||||
aid = mifare_desfire_aid_new (0x222220);
|
||||
res = mifare_desfire_create_application_iso (tag, aid, 0xFF, 1, 0, 0x222F, app2, sizeof (app2));
|
||||
cut_assert_success ("mifare_desfire_create_application_iso");
|
||||
free (aid);
|
||||
|
||||
uint8_t app3[] = "App3";
|
||||
aid = mifare_desfire_aid_new (0x333330);
|
||||
res = mifare_desfire_create_application_iso (tag, aid, 0xFF, 1, 0, 0x333F, app3, sizeof (app3));
|
||||
cut_assert_success ("mifare_desfire_create_application_iso");
|
||||
free (aid);
|
||||
|
||||
aid = mifare_desfire_aid_new (0x444440);
|
||||
res = mifare_desfire_create_application_iso (tag, aid, 0xFF, 1, 0, 0x111F, NULL, 0);
|
||||
cut_assert_equal_int (-1, res, cut_message ("Should fail"));
|
||||
cut_assert_equal_int (DUPLICATE_ERROR, mifare_desfire_last_picc_error (tag), cut_message ("Should be a duplicate error"));
|
||||
|
||||
res = mifare_desfire_create_application_iso (tag, aid, 0xFF, 1, 0, 0x444F, app2, sizeof (app2));
|
||||
cut_assert_equal_int (-1, res, cut_message ("Should fail"));
|
||||
cut_assert_equal_int (DUPLICATE_ERROR, mifare_desfire_last_picc_error (tag), cut_message ("Should be a duplicate error"));
|
||||
free (aid);
|
||||
|
||||
|
||||
res = mifare_desfire_get_df_names (tag, &dfs, &count);
|
||||
cut_assert_equal_int (0, res, cut_message ("mifare_desfire_get_df_names()"));
|
||||
cut_assert_equal_int (3, count, cut_message ("Wrong DF count"));
|
||||
cut_assert_not_null (dfs, cut_message ("DF should not be NULL"));
|
||||
|
||||
cut_assert_equal_int (0x111110, dfs[0].aid, cut_message ("Wrong value"));
|
||||
cut_assert_equal_int (0x111F, dfs[0].fid, cut_message ("Wrong value"));
|
||||
cut_assert_equal_int (0, dfs[0].df_name_len, cut_message ("Wrong value"));
|
||||
|
||||
cut_assert_equal_int (0x222220, dfs[1].aid, cut_message ("Wrong value"));
|
||||
cut_assert_equal_int (0x222F, dfs[1].fid, cut_message ("Wrong value"));
|
||||
cut_assert_equal_int (sizeof (app2), dfs[1].df_name_len, cut_message ("Wrong value"));
|
||||
cut_assert_equal_memory (app2, sizeof (app2), dfs[1].df_name, dfs[1].df_name_len, cut_message ("Wrong value"));
|
||||
|
||||
cut_assert_equal_int (0x333330, dfs[2].aid, cut_message ("Wrong value"));
|
||||
cut_assert_equal_int (0x333F, dfs[2].fid, cut_message ("Wrong value"));
|
||||
cut_assert_equal_int (sizeof (app3), dfs[2].df_name_len, cut_message ("Wrong value"));
|
||||
cut_assert_equal_memory (app3, sizeof (app3), dfs[2].df_name, dfs[2].df_name_len, cut_message ("Wrong value"));
|
||||
free (dfs);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue