Исправление битности AES ключа

This commit is contained in:
Gravit 2018-10-18 22:35:16 +07:00
parent 354974a0c7
commit 830786614f
No known key found for this signature in database
GPG key ID: 061981E1E85D3216

View file

@ -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