proxmark3/client/src/cmdhfst.c

79 lines
2.3 KiB
C
Raw Normal View History

//-----------------------------------------------------------------------------
// Copyright (C) 2020 iceman1001
//
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
// at your option, any later version. See the LICENSE.txt file for the text of
// the license.
//-----------------------------------------------------------------------------
// High frequency ISO14443A / ST commands
//-----------------------------------------------------------------------------
#include "cmdhfst.h"
2021-05-30 20:55:58 +08:00
#include <string.h>
#include <stdio.h>
#define TIMEOUT 2000
2020-09-12 21:11:43 +08:00
// get ST Microelectronics chip model (from UID)
2021-05-30 20:55:58 +08:00
char *get_st_chip_model(uint8_t pc) {
2020-09-12 21:11:43 +08:00
static char model[40];
char *s = model;
memset(model, 0, sizeof(model));
2020-09-12 21:11:43 +08:00
switch (pc) {
case 0x0:
sprintf(s, "SRIX4K (Special)");
break;
case 0x2:
sprintf(s, "SR176");
break;
case 0x3:
sprintf(s, "SRIX4K");
break;
case 0x4:
sprintf(s, "SRIX512");
break;
case 0x6:
sprintf(s, "SRI512");
break;
case 0x7:
sprintf(s, "SRI4K");
break;
case 0xC:
sprintf(s, "SRT512");
break;
2020-09-16 04:51:36 +08:00
case 0xC4:
sprintf(s, "ST25TA64K");
break;
2020-09-12 21:11:43 +08:00
case 0xE2:
sprintf(s, "ST25??? IKEA Rothult");
break;
case 0xE3:
sprintf(s, "ST25TA02KB");
break;
2020-09-30 20:27:19 +08:00
case 0xE4:
2020-09-12 21:11:43 +08:00
sprintf(s, "ST25TA512B");
break;
case 0xA3:
sprintf(s, "ST25TA02KB-P");
break;
case 0xF3:
sprintf(s, "ST25TA02KB-D");
break;
default :
sprintf(s, "Unknown");
break;
}
return s;
}
2020-09-12 21:11:43 +08:00
/*
// print UID info from SRx chips (ST Microelectronics)
2021-05-30 20:55:58 +08:00
void print_st_general_info(uint8_t *data, uint8_t len) {
//uid = first 8 bytes in data
PrintAndLogEx(NORMAL, "");
PrintAndLogEx(SUCCESS, " UID: " _GREEN_("%s"), sprint_hex(SwapEndian64(data, 8, 8), len));
PrintAndLogEx(SUCCESS, " MFG: %02X, " _YELLOW_("%s"), data[6], getTagInfo(data[6]));
PrintAndLogEx(SUCCESS, "Chip: %02X, " _YELLOW_("%s"), data[5] >> 2, get_st_chip_model(data[5] >> 2));
}
*/