libfreefare/test/test_mifare_desfire_aid.c
Romain Tartière 94bf7059b4 Remove copyright comments.
The COPYRIGHT file is already here and is more complete, while the VCS
hold accurate information about contributors and conibution date.
2017-06-29 09:29:15 +02:00

32 lines
1.2 KiB
C

#include <freefare.h>
#include <cutter.h>
#include "freefare_internal.h"
void
test_mifare_desfire_aid(void)
{
/*
* <-- LSB MSB -->
* | MIFARE DESFire AID Byte 0 | MIFARE DESFire AID Byte 1 | MIFARE DESFire AID Byte 2 |
* | Nible 0 | Nible 1 | Nible 2 | Nible 3 | Nible 4 | Nible 5 |
* | 0xF | MIFARE Classic AID | 0x0...0xF |
* | Function-Cluster | Application code |
* <-- MSB LSB-->
*
* 0xF21438 -> 0x83412F
*/
MifareDESFireAID desfire_aid = mifare_desfire_aid_new(0x00f12ab8);
MadAid mad_aid = {
.function_cluster_code = 0x12,
.application_code = 0xab,
};
MifareDESFireAID desfire_aid2 = mifare_desfire_aid_new_with_mad_aid(mad_aid, 8);
cut_assert_equal_memory(desfire_aid->data, 3, desfire_aid2->data, 3, cut_message("wrong aid"));
cut_assert_equal_int(mifare_desfire_aid_get_aid(desfire_aid), 0x00f12ab8, cut_message("wrong aid"));
free(desfire_aid);
free(desfire_aid2);
}