mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
28 lines
455 B
C
28 lines
455 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stddef.h>
|
||
|
|
||
|
#include <toolbox/bit_buffer.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#define ISO14443_CRC_SIZE sizeof(uint16_t)
|
||
|
|
||
|
typedef enum {
|
||
|
Iso14443CrcTypeA,
|
||
|
Iso14443CrcTypeB,
|
||
|
} Iso14443CrcType;
|
||
|
|
||
|
void iso14443_crc_append(Iso14443CrcType type, BitBuffer* buf);
|
||
|
|
||
|
bool iso14443_crc_check(Iso14443CrcType type, const BitBuffer* buf);
|
||
|
|
||
|
void iso14443_crc_trim(BitBuffer* buf);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|