Files
ProtoPirate/protocols/keys.h
T
RocketGod febddb088d @xMasterX --> Refactor key handling and add key loading function
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.
2026-01-11 20:16:39 -08:00

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);