blob: ec7e9aedf6be82ab644d21370a07e3f376aa9d39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
package kr.syeyoung.dungeonsguide.auth.authprovider;
import com.mojang.authlib.exceptions.AuthenticationException;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.io.IOException;
import java.security.KeyPair;
import java.security.NoSuchAlgorithmException;
import java.security.PrivateKey;
import java.security.PublicKey;
public class NullAuth implements AuthProvider {
Logger logger = LogManager.getLogger("NullAuth");
@Override
public String getToken() {
return "TOKEN";
}
@Override
public KeyPair getRsaKey() {
return new KeyPair(new PublicKey() {
@Override
public String getAlgorithm() {
return null;
}
@Override
public String getFormat() {
return null;
}
@Override
public byte[] getEncoded() {
return new byte[0];
}
}, new PrivateKey() {
@Override
public String getAlgorithm() {
return null;
}
@Override
public String getFormat() {
return null;
}
@Override
public byte[] getEncoded() {
return new byte[0];
}
});
}
@Override
public AuthProvider createAuthProvider() throws NoSuchAlgorithmException, AuthenticationException, IOException {
return new NullAuth();
}
}
|