2021-07-16 15:37:48 +00:00
|
|
|
#pragma once
|
|
|
|
#include "subghz_protocol_common.h"
|
[FL-1610] SubGhz: scene based application, PT save and replay (#630)
* SubGhz: scene based application
* SubGhz: encoder/decoder separation, DMA streaming, update app and cli.
* SubGhz: 2 stage async tx complete, minor cleanup
* SubGhz: 2 stage async tx complete, FIX state pin end transmit
* SubGhz: Pricenton, receive TE signal
* SubGhz: Pricenton, add save data, add load data
* SubGhz: Add Read scene, Fix pricenton save, load funtion
* SubGhz: Add Read, Receiver, SaveName scene
* SubGhz: Read and Save (pricenton)
* SubGhz: add Load scence
* SubGhz: Fix select file scene, add load scene, add transmitter view, add send tx pricenton
* SubGhz: Fix pricenton encoder, fix transmitter send
* SubGhz: modified Pricenton Encoder (added guard time at the beginning), modified CC1101 config, code refactoring
* SubGhz: Fix pricenton encoder defalut TE
* Archive: Fix path and name SubGhz
* Archive: Fix name app SubGhz
* GubGhz: Came: add Save, Load key
* GubGhz: GateTX: add Save, Load key
* GubGhz: NeroSketch: add Save, Load key
* Github: better linters triggers
* SubGhz: adding fast loading keys Archive -> Run in app
* GubGhz: KeeLog: add Save, Load key, key generation from the serial number of the meter and the button
* SubGhz: format sources and fix compilation
* FuriHal: add subghz configuration description for AGC section
* SubGhz: save only protocols that can be saved. Cleanup.
* Github: lint on pull requests
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-08-12 14:42:56 +00:00
|
|
|
#include "file-worker.h"
|
|
|
|
|
2021-07-16 15:37:48 +00:00
|
|
|
|
|
|
|
#include <furi.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Keeloq
|
|
|
|
* https://ru.wikipedia.org/wiki/KeeLoq
|
|
|
|
* https://phreakerclub.com/forum/showthread.php?t=1094
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define KEELOQ_NLF 0x3A5C742E
|
|
|
|
#define bit(x,n) (((x)>>(n))&1)
|
|
|
|
#define g5(x,a,b,c,d,e) (bit(x,a)+bit(x,b)*2+bit(x,c)*4+bit(x,d)*8+bit(x,e)*16)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* KeeLoq learning types
|
|
|
|
* https://phreakerclub.com/forum/showthread.php?t=67
|
|
|
|
*/
|
|
|
|
#define KEELOQ_LEARNING_UNKNOWN 0u
|
|
|
|
#define KEELOQ_LEARNING_SIMPLE 1u
|
|
|
|
#define KEELOQ_LEARNING_NORMAL 2u
|
|
|
|
#define KEELOQ_LEARNING_SECURE 3u
|
|
|
|
|
|
|
|
|
|
|
|
/** Simple Learning Encrypt
|
|
|
|
* @param data - 0xBSSSCCCC, B(4bit) key, S(10bit) serial&0x3FF, C(16bit) counter
|
|
|
|
* @param key - manufacture (64bit)
|
|
|
|
* @return keelog encrypt data
|
|
|
|
*/
|
|
|
|
uint32_t subghz_protocol_keeloq_common_encrypt(const uint32_t data, const uint64_t key);
|
|
|
|
|
|
|
|
/** Simple Learning Decrypt
|
|
|
|
* @param data - keelog encrypt data
|
|
|
|
* @param key - manufacture (64bit)
|
|
|
|
* @return 0xBSSSCCCC, B(4bit) key, S(10bit) serial&0x3FF, C(16bit) counter
|
|
|
|
*/
|
|
|
|
uint32_t subghz_protocol_keeloq_common_decrypt(const uint32_t data, const uint64_t key);
|
|
|
|
|
|
|
|
/** Normal Learning
|
|
|
|
* @param data - serial number (28bit)
|
|
|
|
* @param key - manufacture (64bit)
|
|
|
|
* @return manufacture for this serial number (64bit)
|
|
|
|
*/
|
2021-07-16 15:51:47 +00:00
|
|
|
uint64_t subghz_protocol_keeloq_common_normal_learning(uint32_t data, const uint64_t key);
|