More things

Valentin Ochs 2022-11-22 17:34:27 +01:00
parent 3499cde3f8
commit 8d15f71b42
1 changed files with 31 additions and 25 deletions

View File

@ -98,17 +98,14 @@ int main(int argc, char **argv) {
warnx("Application not selectable after creation: %d", res);
goto next_tag;
}
}
// Key should be null
res = mifare_desfire_authenticate_aes(tag, 0, key_null);
if (res < 0) {
warnx(
"Could not authenticate new application with default "
"key: %d",
res);
goto next_tag;
}
// Key might still be null
res = mifare_desfire_authenticate_aes(tag, 0, key_null);
if (res >= 0) {
warnx(
"Application is still using the default key");
// Update to our key
res = mifare_desfire_change_key(tag, 0, key_master, key_null);
if (res < 0) {
@ -118,17 +115,33 @@ int main(int argc, char **argv) {
res);
goto next_tag;
}
}
// Authenticate with new key
res = mifare_desfire_authenticate_aes(tag, 0, key_master);
if (res < 0) {
warnx(
"Could not authenticate new application with our key: "
"%d",
res);
goto next_tag;
// Authenticate with new key
res = mifare_desfire_authenticate_aes(tag, 0, key_master);
if (res < 0) {
warnx(
"Could not authenticate new application with our key: "
"%d",
res);
goto next_tag;
}
int found = 0;
size_t count = 0;
uint8_t key_data[RANDOM_UID_SIZE];
res = mifare_desfire_get_file_ids(tag, &key_data[0], &count);
if (res < 0) {
warnx("Could not list files: %d", res);
goto next_tag;
}
for (int j = 0; j < count; j++) {
if (key_data[j] == 0) {
found = 1;
}
}
if (!found) {
// Create file
res = mifare_desfire_create_std_data_file(
tag, 0, 0, MDAR(0, 0, 0, 0), RANDOM_UID_SIZE);
@ -163,13 +176,6 @@ int main(int argc, char **argv) {
}
}
// Authenticate with our key
res = mifare_desfire_authenticate_aes(tag, 0, key_master);
if (res < 0) {
warnx("Authentication on application failed: %d", res);
goto next_tag;
}
// Grab UID
uint8_t data[RANDOM_UID_SIZE];
res = mifare_desfire_read_data(tag, 0, 0, RANDOM_UID_SIZE, &data[0]);