mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
chip manufacturer and type identification: (#796)
* add more manufacturers * refactor chipID decoding * move to separate file taginfo.[ch]
This commit is contained in:
parent
b6851c194e
commit
1338d245c2
10 changed files with 294 additions and 321 deletions
13
client/taginfo.h
Normal file
13
client/taginfo.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// ISO/IEC 7816-6 manufacturer byte decoding
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#ifndef MANUFACTURERS_H__
|
||||
#define MANUFACTURERS_H__
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
extern char *getManufacturerName(uint8_t vendorID);
|
||||
extern char *getChipInfo(uint8_t vendorID, uint8_t chipID);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue