mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-22 16:41:46 +03:00
[FIX] Авторизация.
This commit is contained in:
parent
78e882b943
commit
6cc3c051cf
2 changed files with 6 additions and 2 deletions
|
@ -1,9 +1,11 @@
|
|||
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 {
|
||||
public final String password;
|
||||
@LauncherNetworkAPI
|
||||
public final String password;
|
||||
|
||||
public AuthPlainPassword(String password) {
|
||||
this.password = password;
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
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 {
|
||||
public final byte[] password;
|
||||
@LauncherNetworkAPI
|
||||
public final byte[] password;
|
||||
|
||||
public AuthRSAPassword(byte[] password) {
|
||||
this.password = password;
|
||||
|
|
Loading…
Reference in a new issue