mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-07-10 23:28:10 -07:00
Fix [TOTP Issue](https://github.com/akopachov/flipper-zero_authenticator/issues/53)
This commit is contained in:
@@ -34,7 +34,7 @@ bool token_info_set_secret(
|
||||
int plain_secret_length =
|
||||
base32_decode((const uint8_t*)base32_token_secret, plain_secret, token_secret_length);
|
||||
bool result;
|
||||
if(plain_secret_length >= 0) {
|
||||
if(plain_secret_length > 0) {
|
||||
token_info->token =
|
||||
totp_crypto_encrypt(plain_secret, plain_secret_length, iv, &token_info->token_length);
|
||||
result = true;
|
||||
|
||||
Reference in New Issue
Block a user