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 official tu
intermediary net/minecraft/class_7469
named net/minecraft/network/message/MessageSignatureData
official c
intermediary comp_925
named data
-
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 official a
Ltu;a:Lcom/mojang/serialization/Codec;
intermediary field_40844
Lnet/minecraft/class_7469;field_40844:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/network/message/MessageSignatureData;CODEC:Lcom/mojang/serialization/Codec;
-
SIZE
public static final int SIZE- See Also:
- Mappings:
Namespace Name Mixin selector official b
Ltu;b:I
intermediary field_40683
Lnet/minecraft/class_7469;field_40683:I
named SIZE
Lnet/minecraft/network/message/MessageSignatureData;SIZE:I
-
-
Constructor Details
-
MessageSignatureData
public MessageSignatureData(byte[] byte2)
-
-
Method Details
-
fromBuf
- Mappings:
Namespace Name Mixin selector official a
Ltu;a(Lss;)Ltu;
intermediary method_46276
Lnet/minecraft/class_7469;method_46276(Lnet/minecraft/class_2540;)Lnet/minecraft/class_7469;
named fromBuf
Lnet/minecraft/network/message/MessageSignatureData;fromBuf(Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/message/MessageSignatureData;
-
write
- Mappings:
Namespace Name Mixin selector official a
Ltu;a(Lss;Ltu;)V
intermediary method_44845
Lnet/minecraft/class_7469;method_44845(Lnet/minecraft/class_2540;Lnet/minecraft/class_7469;)V
named write
Lnet/minecraft/network/message/MessageSignatureData;write(Lnet/minecraft/network/PacketByteBuf;Lnet/minecraft/network/message/MessageSignatureData;)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 official a
Ltu;a(Laps;Lapr;)Z
intermediary method_44843
Lnet/minecraft/class_7469;method_44843(Lnet/minecraft/class_7500;Lnet/minecraft/class_7498;)Z
named verify
Lnet/minecraft/network/message/MessageSignatureData;verify(Lnet/minecraft/network/encryption/SignatureVerifier;Lnet/minecraft/network/encryption/SignatureUpdatable;)Z
-
toByteBuffer
Returns the byte buffer containing the signature data.- Returns:
- the byte buffer containing the signature data
- Mappings:
Namespace Name Mixin selector official a
Ltu;a()Ljava/nio/ByteBuffer;
intermediary method_44994
Lnet/minecraft/class_7469;method_44994()Ljava/nio/ByteBuffer;
named toByteBuffer
Lnet/minecraft/network/message/MessageSignatureData;toByteBuffer()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 official a
Ltu;a(Ltv;)Ltu$a;
intermediary method_46277
Lnet/minecraft/class_7469;method_46277(Lnet/minecraft/class_7561;)Lnet/minecraft/class_7469$class_7819;
named pack
Lnet/minecraft/network/message/MessageSignatureData;pack(Lnet/minecraft/network/message/MessageSignatureStorage;)Lnet/minecraft/network/message/MessageSignatureData$Indexed;
-
data
public byte[] data()Returns the value of thedata
record component.- Returns:
- the value of the
data
record component
-