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 - named - net/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData- intermediary - net/minecraft/class_3515$class_7425- official - axx$b- named - salt- intermediary - comp_739- official - b- named - signature- intermediary - comp_740- official - c
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.byte[]getSalt()final inthashCode()Returns a hash code value for this object.booleanReturns whether the signature data has a signature.longsalt()Returns the value of thesaltrecord component.byte[]Returns the value of thesignaturerecord component.final StringtoString()Returns a string representation of this record class.static voidwrite(PacketByteBuf buf, NetworkEncryptionUtils.SignatureData signatureData) 
- 
Field Details- 
saltprivate final long saltThe field for thesaltrecord component.
- 
signatureprivate final byte[] signatureThe field for thesignaturerecord component.
- 
NONEThe signature data for data without signatures.- Mappings:
- Namespace - Name - Mixin selector - named - NONE- Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;NONE:Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;- intermediary - field_39040- Lnet/minecraft/class_3515$class_7425;field_39040:Lnet/minecraft/class_3515$class_7425;- official - a- Laxx$b;a:Laxx$b;
 
 
- 
- 
Constructor Details- 
SignatureData- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;<init>(Lnet/minecraft/network/PacketByteBuf;)V- intermediary - <init>- Lnet/minecraft/class_3515$class_7425;<init>(Lnet/minecraft/class_2540;)V- official - <init>- Laxx$b;<init>(Lvl;)V
 
- 
SignatureDatapublic SignatureData(long long2, byte[] byte2) 
 
- 
- 
Method Details- 
isSignaturePresentpublic 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 - named - isSignaturePresent- Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;isSignaturePresent()Z- intermediary - method_43528- Lnet/minecraft/class_3515$class_7425;method_43528()Z- official - a- Laxx$b;a()Z
 
- 
write- Mappings:
- Namespace - Name - Mixin selector - named - write- Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;write(Lnet/minecraft/network/PacketByteBuf;Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;)V- intermediary - method_43529- Lnet/minecraft/class_3515$class_7425;method_43529(Lnet/minecraft/class_2540;Lnet/minecraft/class_3515$class_7425;)V- official - a- Laxx$b;a(Lvl;Laxx$b;)V
 
- 
getSaltpublic byte[] getSalt()- Mappings:
- Namespace - Name - Mixin selector - named - getSalt- Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;getSalt()[B- intermediary - method_43530- Lnet/minecraft/class_3515$class_7425;method_43530()[B- official - b- Laxx$b;b()[B
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
saltpublic long salt()Returns the value of thesaltrecord component.- Returns:
- the value of the saltrecord component
 
- 
signaturepublic byte[] signature()Returns the value of thesignaturerecord component.- Returns:
- the value of the signaturerecord component
 
 
-