mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-21 12:21:49 +03:00
18 lines
742 B
C
18 lines
742 B
C
#pragma once
|
|
|
|
#define CONFIG_FILE_HEADER "Flipper TOTP plugin config file"
|
|
#define CONFIG_FILE_ACTUAL_VERSION (4)
|
|
|
|
#define TOTP_CONFIG_KEY_TIMEZONE "Timezone"
|
|
#define TOTP_CONFIG_KEY_TOKEN_NAME "TokenName"
|
|
#define TOTP_CONFIG_KEY_TOKEN_SECRET "TokenSecret"
|
|
#define TOTP_CONFIG_KEY_TOKEN_ALGO "TokenAlgo"
|
|
#define TOTP_CONFIG_KEY_TOKEN_DIGITS "TokenDigits"
|
|
#define TOTP_CONFIG_KEY_TOKEN_DURATION "TokenDuration"
|
|
#define TOTP_CONFIG_KEY_TOKEN_AUTOMATION_FEATURES "TokenAutomationFeatures"
|
|
#define TOTP_CONFIG_KEY_CRYPTO_VERIFY "Crypto"
|
|
#define TOTP_CONFIG_KEY_BASE_IV "BaseIV"
|
|
#define TOTP_CONFIG_KEY_PINSET "PinIsSet"
|
|
#define TOTP_CONFIG_KEY_NOTIFICATION_METHOD "NotificationMethod"
|
|
#define TOTP_CONFIG_KEY_AUTOMATION_METHOD "AutomationMethod"
|