Package net.minecraft.network.message
Record Class MessageSignatureData
java.lang.Object
java.lang.Record
net.minecraft.network.message.MessageSignatureData
- Record Components:
data
-
A message signature data that can be verified.
- Mappings:
Namespace Name named net/minecraft/network/message/MessageSignatureData
intermediary net/minecraft/class_7469
official yb
named data
intermediary comp_925
official c
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<MessageSignatureData> private final byte[]
The field for thedata
record component.static final int
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]
data()
Returns the value of thedata
record component.boolean
Indicates whether some other object is "equal to" this one.static MessageSignatureData
fromBuf
(PacketByteBuf buf) int
hashCode()
Returns a hash code value for this object.pack
(MessageSignatureStorage storage) Returns the byte buffer containing the signature data.toString()
Returns a string representation of this record class.boolean
verify
(SignatureVerifier verifier, SignatureUpdatable updatable) Returns whether the signature data is verified.static void
write
(PacketByteBuf buf, MessageSignatureData signature)
-
Field Details
-
data
private final byte[] dataThe field for thedata
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/network/message/MessageSignatureData;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_40844
Lnet/minecraft/class_7469;field_40844:Lcom/mojang/serialization/Codec;
official a
Lyb;a:Lcom/mojang/serialization/Codec;
-
SIZE
public static final int SIZE- See Also:
- Mappings:
Namespace Name Mixin selector named SIZE
Lnet/minecraft/network/message/MessageSignatureData;SIZE:I
intermediary field_40683
Lnet/minecraft/class_7469;field_40683:I
official b
Lyb;b:I
-
-
Constructor Details
-
MessageSignatureData
public MessageSignatureData(byte[] byte2)
-
-
Method Details
-
fromBuf
- Mappings:
Namespace Name Mixin selector named fromBuf
Lnet/minecraft/network/message/MessageSignatureData;fromBuf(Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/message/MessageSignatureData;
intermediary method_46276
Lnet/minecraft/class_7469;method_46276(Lnet/minecraft/class_2540;)Lnet/minecraft/class_7469;
official a
Lyb;a(Lwm;)Lyb;
-
write
- Mappings:
Namespace Name Mixin selector named write
Lnet/minecraft/network/message/MessageSignatureData;write(Lnet/minecraft/network/PacketByteBuf;Lnet/minecraft/network/message/MessageSignatureData;)V
intermediary method_44845
Lnet/minecraft/class_7469;method_44845(Lnet/minecraft/class_2540;Lnet/minecraft/class_7469;)V
official a
Lyb;a(Lwm;Lyb;)V
-
verify
Returns whether the signature data is verified.- Parameters:
verifier
- the verifier that is created with the sender's public key- Returns:
- whether the signature data is verified
- Mappings:
Namespace Name Mixin selector named verify
Lnet/minecraft/network/message/MessageSignatureData;verify(Lnet/minecraft/network/encryption/SignatureVerifier;Lnet/minecraft/network/encryption/SignatureUpdatable;)Z
intermediary method_44843
Lnet/minecraft/class_7469;method_44843(Lnet/minecraft/class_7500;Lnet/minecraft/class_7498;)Z
official a
Lyb;a(Lazm;Lazl;)Z
-
toByteBuffer
Returns the byte buffer containing the signature data.- Returns:
- the byte buffer containing the signature data
- Mappings:
Namespace Name Mixin selector named toByteBuffer
Lnet/minecraft/network/message/MessageSignatureData;toByteBuffer()Ljava/nio/ByteBuffer;
intermediary method_44994
Lnet/minecraft/class_7469;method_44994()Ljava/nio/ByteBuffer;
official a
Lyb;a()Ljava/nio/ByteBuffer;
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
hashCode
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. -
pack
- Mappings:
Namespace Name Mixin selector named pack
Lnet/minecraft/network/message/MessageSignatureData;pack(Lnet/minecraft/network/message/MessageSignatureStorage;)Lnet/minecraft/network/message/MessageSignatureData$Indexed;
intermediary method_46277
Lnet/minecraft/class_7469;method_46277(Lnet/minecraft/class_7561;)Lnet/minecraft/class_7469$class_7819;
official a
Lyb;a(Lyc;)Lyb$a;
-
data
public byte[] data()Returns the value of thedata
record component.- Returns:
- the value of the
data
record component
-