Package net.minecraft.network.encryption
Record Class PlayerPublicKey.PublicKeyData
java.lang.Object
java.lang.Record
net.minecraft.network.encryption.PlayerPublicKey.PublicKeyData
- Record Components:
expiresAt-key-keySignature-
- Enclosing class:
PlayerPublicKey
public static record PlayerPublicKey.PublicKeyData(Instant expiresAt, PublicKey key, byte[] keySignature)
extends Record
- Mappings:
Namespace Name official bsu$aintermediary net/minecraft/class_7428$class_7443named net/minecraft/network/encryption/PlayerPublicKey$PublicKeyDataofficial bintermediary comp_769named expiresAtofficial cintermediary comp_770named keyofficial dintermediary comp_771named keySignature
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<PlayerPublicKey.PublicKeyData>private final InstantThe field for theexpiresAtrecord component.private static final intprivate final PublicKeyThe field for thekeyrecord component.private final byte[]The field for thekeySignaturerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionPublicKeyData(Instant instant, PublicKey publicKey, byte[] byte2) PublicKeyData(PacketByteBuf packetByteBuf) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexpiresAtrecord component.final inthashCode()Returns a hash code value for this object.booleankey()Returns the value of thekeyrecord component.byte[]Returns the value of thekeySignaturerecord component.voidmethod_44011(PacketByteBuf packetByteBuf) (package private) com.mojang.authlib.properties.Property(package private) Stringfinal StringtoString()Returns a string representation of this record class.
-
Field Details
-
expiresAt
The field for theexpiresAtrecord component. -
key
The field for thekeyrecord component. -
keySignature
private final byte[] keySignatureThe field for thekeySignaturerecord component. -
field_39309
private static final int field_39309- See Also:
- Mappings:
Namespace Name Mixin selector official eLbsu$a;e:Iintermediary field_39309Lnet/minecraft/class_7428$class_7443;field_39309:Inamed field_39309Lnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;field_39309:I
-
CODEC
- Mappings:
Namespace Name Mixin selector official aLbsu$a;a:Lcom/mojang/serialization/Codec;intermediary field_39119Lnet/minecraft/class_7428$class_7443;field_39119:Lcom/mojang/serialization/Codec;named CODECLnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
PublicKeyData
-
PublicKeyData
-
-
Method Details
-
method_44011
- Mappings:
Namespace Name Mixin selector official aLbsu$a;a(Lqw;)Vintermediary method_44011Lnet/minecraft/class_7428$class_7443;method_44011(Lnet/minecraft/class_2540;)Vnamed method_44011Lnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;method_44011(Lnet/minecraft/network/PacketByteBuf;)V
-
toProperty
com.mojang.authlib.properties.Property toProperty()- Mappings:
Namespace Name Mixin selector official eLbsu$a;e()Lcom/mojang/authlib/properties/Property;intermediary method_43700Lnet/minecraft/class_7428$class_7443;method_43700()Lcom/mojang/authlib/properties/Property;named toPropertyLnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;toProperty()Lcom/mojang/authlib/properties/Property;
-
toSerializedString
String toSerializedString()- Mappings:
Namespace Name Mixin selector official fLbsu$a;f()Ljava/lang/String;intermediary method_43702Lnet/minecraft/class_7428$class_7443;method_43702()Ljava/lang/String;named toSerializedStringLnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;toSerializedString()Ljava/lang/String;
-
isExpired
public boolean isExpired()- Mappings:
Namespace Name Mixin selector official aLbsu$a;a()Zintermediary method_43704Lnet/minecraft/class_7428$class_7443;method_43704()Znamed isExpiredLnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;isExpired()Z
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
expiresAt
Returns the value of theexpiresAtrecord component.- Returns:
- the value of the
expiresAtrecord component
-
key
Returns the value of thekeyrecord component.- Returns:
- the value of the
keyrecord component
-
keySignature
public byte[] keySignature()Returns the value of thekeySignaturerecord component.- Returns:
- the value of the
keySignaturerecord component
-