mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-10 17:30:07 +08:00
1338d245c2
* add more manufacturers * refactor chipID decoding * move to separate file taginfo.[ch]
13 lines
400 B
C
13 lines
400 B
C
//-----------------------------------------------------------------------------
|
|
// 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
|