]> git.zerfleddert.de Git - proxmark3-svn/blame - client/lualibs/taglib.lua
Some refactoring, also placed wait14443a here
[proxmark3-svn] / client / lualibs / taglib.lua
CommitLineData
5eab31c3 1local manufacturer = {}
2manufacturer[0x01]='Motorola UK'
3manufacturer[0x02]='STMicroelectronics SA France'
4manufacturer[0x03]='Hitachi, Ltd Japan'
5manufacturer[0x04]='NXP Semiconductors Germany'
6manufacturer[0x05]='Infineon Technologies AG Germany'
7manufacturer[0x06]='Cylink USA'
8manufacturer[0x07]='Texas Instrument France'
9manufacturer[0x08]='Fujitsu Limited Japan'
10manufacturer[0x09]='Matsushita Electronics Corporation, Semiconductor Company Japan'
11manufacturer[0x0A]='NEC Japan'
12manufacturer[0x0B]='Oki Electric Industry Co. Ltd Japan'
13manufacturer[0x0C]='Toshiba Corp. Japan'
14manufacturer[0x0D]='Mitsubishi Electric Corp. Japan'
15manufacturer[0x0E]='Samsung Electronics Co. Ltd Korea'
16manufacturer[0x0F]='Hynix Korea'
17manufacturer[0x10]='LG-Semiconductors Co. Ltd Korea'
18manufacturer[0x11]='Emosyn-EM Microelectronics USA'
19manufacturer[0x12]='INSIDE Technology France'
20manufacturer[0x13]='ORGA Kartensysteme GmbH Germany'
21manufacturer[0x14]='SHARP Corporation Japan'
22manufacturer[0x15]='ATMEL France'
23manufacturer[0x16]='EM Microelectronic-Marin SA Switzerland'
24manufacturer[0x17]='KSW Microtec GmbH Germany'
25manufacturer[0x18]='ZMD AG Germany'
26manufacturer[0x19]='XICOR, Inc. USA'
27manufacturer[0x1A]='Sony Corporation Japan'
28manufacturer[0x1B]='Malaysia Microelectronic Solutions Sdn. Bhd Malaysia'
29manufacturer[0x1C]='Emosyn USA'
30manufacturer[0x1D]='Shanghai Fudan Microelectronics Co. Ltd. P.R. China'
31manufacturer[0x1E]='Magellan Technology Pty Limited Australia'
32manufacturer[0x1F]='Melexis NV BO Switzerland'
33manufacturer[0x20]='Renesas Technology Corp. Japan'
34manufacturer[0x21]='TAGSYS France'
35manufacturer[0x22]='Transcore USA'
36manufacturer[0x23]='Shanghai belling corp., ltd. China'
37manufacturer[0x24]='Masktech Germany Gmbh Germany'
38manufacturer[0x25]='Innovision Research and Technology Plc UK'
39manufacturer[0x26]='Hitachi ULSI Systems Co., Ltd. Japan'
40manufacturer[0x27]='Cypak AB Sweden'
41manufacturer[0x28]='Ricoh Japan'
42manufacturer[0x29]='ASK France'
43manufacturer[0x2A]='Unicore Microsystems, LLC RussianFederation'
44manufacturer[0x2B]='Dallas Semiconductor/Maxim USA'
45manufacturer[0x2C]='Impinj, Inc. USA'
46manufacturer[0x2D]='RightPlug Alliance USA'
47manufacturer[0x2E]='Broadcom Corporation USA'
48manufacturer[0x2F]='MStar Semiconductor, Inc Taiwan, ROC'
49manufacturer[0x30]='BeeDar Technology Inc. USA'
50manufacturer[0x31]='RFIDsec Denmark'
51manufacturer[0x32]='Schweizer Electronic AG Germany'
52manufacturer[0x33]='AMIC Technology Corp Taiwan'
53manufacturer[0x34]='Mikron JSC Russia'
54manufacturer[0x35]='Fraunhofer Institute for Photonic Microsystems Germany'
55manufacturer[0x36]='IDS Microchip AG Switzerland'
56manufacturer[0x37]='Kovio USA'
57manufacturer[0x38]='HMT Microelectronic Ltd Switzerland'
58manufacturer[0x39]='Silicon Craft Technology Thailand'
59manufacturer[0x3A]='Advanced Film Device Inc. Japan'
60manufacturer[0x3B]='Nitecrest Ltd UK'
61manufacturer[0x3C]='Verayo Inc. USA'
62manufacturer[0x3D]='HID Global USA'
63manufacturer[0x3E]='Productivity Engineering Gmbh Germany'
64manufacturer[0x3F]='Austriamicrosystems AG (reserved) Austria'
65manufacturer[0x40]='Gemalto SA France'
66manufacturer[0x41]='Renesas Electronics Corporation Japan'
67manufacturer[0x42]='3Alogics Inc Korea'
68manufacturer[0x43]='Top TroniQ Asia Limited Hong Kong'
69manufacturer[0x44]='Gentag Inc (USA) USA'
70
71return {
72 lookupManufacturer = function (value)
73 if type(value) == 'string' then
74 local v = tonumber(value, 16)
75 print(string.format("WARNING: lookupManufacturer expects numeric value, converted %s into %x", value,v))
76 value = v
77 end
78
79 return manufacturer[value] or "no tag-info available"
80 end,
81
82
83}
Impressum, Datenschutz