net.minecraft.util

public class Crypt

azc
net.minecraft.util.Crypt
net.minecraft.class_3515
net.minecraft.network.encryption.NetworkEncryptionUtils
net.minecraft.util.MinecraftEncryption

Field summary

Modifier and TypeField
private static final String
h
SYMMETRIC_ALGORITHM
field_29830
AES
private static final int
i
SYMMETRIC_BITS
field_29831
AES_KEY_LENGTH
private static final String
j
ASYMMETRIC_ALGORITHM
field_29832
RSA
private static final int
k
ASYMMETRIC_BITS
field_29833
RSA_KEY_LENGTH
private static final String
l
BYTE_ENCODING
field_29834
ISO_8859_1
private static final String
m
HASH_ALGORITHM
field_29835
SHA1
public static final String
a
SIGNING_ALGORITHM
field_39109
SHA256_WITH_RSA
public static final int
b
SIGNATURE_BYTES
field_40111
SHA256_BITS
private static final String
n
PEM_RSA_PRIVATE_KEY_HEADER
field_39037
RSA_PRIVATE_KEY_PREFIX
private static final String
o
PEM_RSA_PRIVATE_KEY_FOOTER
field_39038
RSA_PRIVATE_KEY_SUFFIX
public static final String
c
RSA_PUBLIC_KEY_HEADER
field_39033
RSA_PUBLIC_KEY_PREFIX
private static final String
p
RSA_PUBLIC_KEY_FOOTER
field_39039
RSA_PUBLIC_KEY_SUFFIX
public static final String
d
MIME_LINE_SEPARATOR
field_39034
LINEBREAK
public static final Base64$Encoder
e
MIME_ENCODER
field_39272
BASE64_ENCODER
public static final com.mojang.serialization.Codec<PublicKey>
f
PUBLIC_KEY_CODEC
field_39035
RSA_PUBLIC_KEY_CODEC
public static final com.mojang.serialization.Codec<PrivateKey>
g
PRIVATE_KEY_CODEC
field_39036
RSA_PRIVATE_KEY_CODEC

Constructor summary

ModifierConstructor
public ()

Method summary

Modifier and TypeMethod
public static SecretKey
a()
generateSecretKey()
method_15239()
generateSecretKey()
public static KeyPair
b()
generateKeyPair()
method_15237()
generateServerKeyPair()
public static byte[]
a(String arg0, PublicKey arg1, SecretKey arg2)
digestData(String arg0, PublicKey arg1, SecretKey arg2)
method_15240(String arg0, PublicKey arg1, SecretKey arg2)
computeServerId(String baseServerId, PublicKey publicKey, SecretKey secretKey)
private static byte[]
a(byte[]... arg0)
digestData(byte[]... arg0)
method_15236(byte[]... arg0)
hash(byte[]... bytes)
private static <T extends Key> T
a(String arg0, String arg1, String arg2, azc$a<T> arg3)
rsaStringToKey(String arg0, String arg1, String arg2, Crypt$ByteArrayToKeyFunction<T> arg3)
method_43520(String arg0, String arg1, String arg2, class_3515$class_7424<T> arg3)
decodePem(String key, String prefix, String suffix, NetworkEncryptionUtils$KeyDecoder<T> decoder)
public static PrivateKey
a(String arg0)
stringToPemRsaPrivateKey(String arg0)
method_43519(String arg0)
decodeRsaPrivateKeyPem(String key)
public static PublicKey
b(String arg0)
stringToRsaPublicKey(String arg0)
method_43524(String arg0)
decodeRsaPublicKeyPem(String key)
public static String
a(PublicKey arg0)
rsaPublicKeyToString(PublicKey arg0)
method_43522(PublicKey arg0)
encodeRsaPublicKey(PublicKey key)
public static String
a(PrivateKey arg0)
pemRsaPrivateKeyToString(PrivateKey arg0)
method_43521(PrivateKey arg0)
encodeRsaPrivateKey(PrivateKey key)
private static PrivateKey
b(byte[] arg0)
byteToPrivateKey(byte[] arg0)
method_43525(byte[] arg0)
decodeEncodedRsaPrivateKey(byte[] key)
public static PublicKey
a(byte[] arg0)
byteToPublicKey(byte[] arg0)
method_15242(byte[] arg0)
decodeEncodedRsaPublicKey(byte[] key)
public static SecretKey
a(PrivateKey arg0, byte[] arg1)
decryptByteToSecretKey(PrivateKey arg0, byte[] arg1)
method_15234(PrivateKey arg0, byte[] arg1)
decryptSecretKey(PrivateKey privateKey, byte[] encryptedSecretKey)
public static byte[]
a(Key arg0, byte[] arg1)
encryptUsingKey(Key arg0, byte[] arg1)
method_15238(Key arg0, byte[] arg1)
encrypt(Key key, byte[] data)
public static byte[]
b(Key arg0, byte[] arg1)
decryptUsingKey(Key arg0, byte[] arg1)
method_15243(Key arg0, byte[] arg1)
decrypt(Key key, byte[] data)
private static byte[]
a(int arg0, Key arg1, byte[] arg2)
cipherData(int arg0, Key arg1, byte[] arg2)
method_15244(int arg0, Key arg1, byte[] arg2)
crypt(int opMode, Key key, byte[] data)
private static Cipher
a(int arg0, String arg1, Key arg2)
setupCipher(int arg0, String arg1, Key arg2)
method_15241(int arg0, String arg1, Key arg2)
createCipher(int opMode, String algorithm, Key key)
public static Cipher
a(int arg0, Key arg1)
getCipher(int arg0, Key arg1)
method_15235(int arg0, Key arg1)
cipherFromKey(int opMode, Key key)