mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
ADD: started to rework the wiegand converting. Extracted it from the 'lf hid' file. Looks decent but still needs work.
This commit is contained in:
parent
4a843840e3
commit
a41d3dbb90
2 changed files with 252 additions and 0 deletions
21
common/wiegand.h
Normal file
21
common/wiegand.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// 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.
|
||||
//-----------------------------------------------------------------------------
|
||||
// Generic Wiegand Calculation code
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#ifndef __WIEGAND_H
|
||||
#define __WIEGAND_H
|
||||
|
||||
#include "common.h"
|
||||
#include "util.h"
|
||||
|
||||
uint8_t getParity( uint8_t *bits, uint8_t length, uint8_t type);
|
||||
uint8_t checkParity(uint32_t bits, uint8_t bitlen, uint8_t type);
|
||||
|
||||
void num_to_wiegand_bytes(uint64_t oem, uint64_t fc, uint64_t cn, uint8_t *dest, uint8_t formatlen);
|
||||
void num_to_wiegand_bits(uint64_t oem, uint64_t fc, uint64_t cn, uint8_t *dest, uint8_t formatlen);
|
||||
|
||||
#endif /* __WIEGAND_H */
|
Loading…
Add table
Add a link
Reference in a new issue