Package net.minecraft.network.encryption
Record Class NetworkEncryptionUtils.SignatureData
java.lang.Object
java.lang.Record
net.minecraft.network.encryption.NetworkEncryptionUtils.SignatureData
- Record Components:
salt
-signature
-
- Enclosing class:
NetworkEncryptionUtils
public static record NetworkEncryptionUtils.SignatureData(long salt, byte[] signature)
extends Record
A record holding a signature of a data and the salt added while signing. Note that
the signature might not be actually present.
- Mappings:
Namespace Name official ali$b
intermediary net/minecraft/class_3515$class_7425
named net/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData
official b
intermediary comp_739
named salt
official c
intermediary comp_740
named signature
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.byte[]
getSalt()
final int
hashCode()
Returns a hash code value for this object.boolean
Returns whether the signature data has a signature.long
salt()
Returns the value of thesalt
record component.byte[]
Returns the value of thesignature
record component.final String
toString()
Returns a string representation of this record class.static void
write
(PacketByteBuf buf, NetworkEncryptionUtils.SignatureData signatureData)
-
Field Details
-
salt
private final long saltThe field for thesalt
record component. -
signature
private final byte[] signatureThe field for thesignature
record component. -
NONE
The signature data for data without signatures.- Mappings:
Namespace Name Mixin selector official a
Lali$b;a:Lali$b;
intermediary field_39040
Lnet/minecraft/class_3515$class_7425;field_39040:Lnet/minecraft/class_3515$class_7425;
named NONE
Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;NONE:Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;
-
-
Constructor Details
-
SignatureData
- Mappings:
Namespace Name Mixin selector official <init>
Lali$b;<init>(Lqx;)V
intermediary <init>
Lnet/minecraft/class_3515$class_7425;<init>(Lnet/minecraft/class_2540;)V
named <init>
Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
SignatureData
public SignatureData(long long2, byte[] byte2)
-
-
Method Details
-
isSignaturePresent
public boolean isSignaturePresent()Returns whether the signature data has a signature.- Returns:
- whether the signature data has a signature
- API Note:
- This does not validate the signature itself.
- Mappings:
Namespace Name Mixin selector official a
Lali$b;a()Z
intermediary method_43528
Lnet/minecraft/class_3515$class_7425;method_43528()Z
named isSignaturePresent
Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;isSignaturePresent()Z
-
write
- Mappings:
Namespace Name Mixin selector official a
Lali$b;a(Lqx;Lali$b;)V
intermediary method_43529
Lnet/minecraft/class_3515$class_7425;method_43529(Lnet/minecraft/class_2540;Lnet/minecraft/class_3515$class_7425;)V
named write
Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;write(Lnet/minecraft/network/PacketByteBuf;Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;)V
-
getSalt
public byte[] getSalt()- Mappings:
Namespace Name Mixin selector official b
Lali$b;b()[B
intermediary method_43530
Lnet/minecraft/class_3515$class_7425;method_43530()[B
named getSalt
Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;getSalt()[B
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
salt
public long salt()Returns the value of thesalt
record component.- Returns:
- the value of the
salt
record component
-
signature
public byte[] signature()Returns the value of thesignature
record component.- Returns:
- the value of the
signature
record component
-