mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-22 16:41:46 +03:00
Исправление битности AES ключа
This commit is contained in:
parent
354974a0c7
commit
830786614f
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ public byte[] verify(byte[] digest) {
|
|||
@LauncherAPI
|
||||
public static final int TOKEN_LENGTH = 16;
|
||||
@LauncherAPI
|
||||
public static final int AES_KEY_LENGTH = 24;
|
||||
public static final int AES_KEY_LENGTH = 8;
|
||||
@LauncherAPI
|
||||
public static final int TOKEN_STRING_LENGTH = TOKEN_LENGTH << 1;
|
||||
@LauncherAPI
|
||||
|
|
Loading…
Reference in a new issue