mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 00:51:01 +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
|
@LauncherAPI
|
||||||
public static final int TOKEN_LENGTH = 16;
|
public static final int TOKEN_LENGTH = 16;
|
||||||
@LauncherAPI
|
@LauncherAPI
|
||||||
public static final int AES_KEY_LENGTH = 24;
|
public static final int AES_KEY_LENGTH = 8;
|
||||||
@LauncherAPI
|
@LauncherAPI
|
||||||
public static final int TOKEN_STRING_LENGTH = TOKEN_LENGTH << 1;
|
public static final int TOKEN_STRING_LENGTH = TOKEN_LENGTH << 1;
|
||||||
@LauncherAPI
|
@LauncherAPI
|
||||||
|
|
Loading…
Reference in a new issue