proxmark3/client/taginfo.h
pwpiwi 1338d245c2
chip manufacturer and type identification: (#796)
* add more manufacturers
* refactor chipID decoding
* move to separate file taginfo.[ch]
2019-03-03 11:59:38 +01:00

14 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