mirror of
https://protopirate.net/ProtoPirate/ProtoPirate.git
synced 2026-03-30 01:00:04 +00:00
22 lines
415 B
C
22 lines
415 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <lib/subghz/environment.h>
|
|
#include <lib/subghz/subghz_keystore.h>
|
|
|
|
extern uint64_t kia_mf_key;
|
|
extern uint64_t kia_v6_a_key;
|
|
extern uint64_t kia_v6_b_key;
|
|
extern uint64_t kia_v5_key;
|
|
|
|
uint64_t get_kia_mf_key();
|
|
|
|
uint64_t get_kia_v6_keystore_a();
|
|
|
|
uint64_t get_kia_v6_keystore_b();
|
|
|
|
uint64_t get_kia_v5_key();
|
|
|
|
void protopirate_keys_load(SubGhzEnvironment* environment);
|