mirror of
https://github.com/bettse/seader.git
synced 2026-03-30 16:25:59 +00:00
35 lines
723 B
C
35 lines
723 B
C
#pragma once
|
|
|
|
#include <nfc/helpers/iso13239_crc.h>
|
|
#include <optimized_ikeys.h>
|
|
#include <optimized_cipher.h>
|
|
|
|
#include "seader_i.h"
|
|
#include "seader_credential.h"
|
|
#include "seader_bridge.h"
|
|
#include "seader_worker.h"
|
|
#include "protocol/rfal_picopass.h"
|
|
|
|
#include <Payload.h>
|
|
#include <SIO.h>
|
|
|
|
#define ExternalApplicationA 0x44
|
|
#define NFCInterface 0x14
|
|
#define SAMInterface 0x0a
|
|
|
|
NfcCommand seader_worker_card_detect(
|
|
Seader* seader,
|
|
uint8_t sak,
|
|
uint8_t* atqa,
|
|
const uint8_t* uid,
|
|
uint8_t uid_len,
|
|
uint8_t* ats,
|
|
uint8_t ats_len);
|
|
|
|
bool seader_process_success_response_i(
|
|
Seader* seader,
|
|
uint8_t* apdu,
|
|
size_t len,
|
|
bool online,
|
|
SeaderPollerContainer* spc);
|