[FIX] Авторизация.

This commit is contained in:
Zaxar163 2019-10-03 16:03:44 +02:00
parent 78e882b943
commit 6cc3c051cf
No known key found for this signature in database
GPG key ID: 1FE4F2E1F053831B
2 changed files with 6 additions and 2 deletions

View file

@ -1,8 +1,10 @@
package pro.gravit.launcher.request.auth.password;
import pro.gravit.launcher.LauncherNetworkAPI;
import pro.gravit.launcher.request.auth.AuthRequest;
public class AuthPlainPassword implements AuthRequest.AuthPasswordInterface {
@LauncherNetworkAPI
public final String password;
public AuthPlainPassword(String password) {

View file

@ -1,8 +1,10 @@
package pro.gravit.launcher.request.auth.password;
import pro.gravit.launcher.LauncherNetworkAPI;
import pro.gravit.launcher.request.auth.AuthRequest;
public class AuthRSAPassword implements AuthRequest.AuthPasswordInterface {
@LauncherNetworkAPI
public final byte[] password;
public AuthRSAPassword(byte[] password) {