mirror of
https://protopirate.net/ProtoPirate/ProtoPirate.git
synced 2026-06-07 06:51:40 +00:00
febddb088d
Replaces obfuscated key macros and inline functions with external key variables and function declarations. Adds protopirate_keys_load to initialize keys using a SubGhzEnvironment. Updates includes to use subghz environment and keystore headers.
19 lines
359 B
C
19 lines
359 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;
|
|
|
|
uint64_t get_kia_mf_key();
|
|
|
|
uint64_t get_kia_v6_keystore_a();
|
|
|
|
uint64_t get_kia_v6_keystore_b();
|
|
|
|
void protopirate_keys_load(SubGhzEnvironment* environment);
|