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 bws$a
intermediary net/minecraft/class_7428$class_7443
named net/minecraft/network/encryption/PlayerPublicKey$PublicKeyData
official b
intermediary comp_769
named expiresAt
official c
intermediary comp_770
named key
official d
intermediary comp_771
named keySignature
  • Field Details

    • expiresAt

      private final Instant expiresAt
      The field for the expiresAt record component.
    • key

      private final PublicKey key
      The field for the key record component.
    • keySignature

      private final byte[] keySignature
      The field for the keySignature record component.
    • KEY_SIGNATURE_MAX_SIZE

      private static final int KEY_SIGNATURE_MAX_SIZE
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official e Lbws$a;e:I
      intermediary field_39309 Lnet/minecraft/class_7428$class_7443;field_39309:I
      named KEY_SIGNATURE_MAX_SIZE Lnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;KEY_SIGNATURE_MAX_SIZE:I
    • CODEC

      public static final com.mojang.serialization.Codec<PlayerPublicKey.PublicKeyData> CODEC
      Mappings:
      Namespace Name Mixin selector
      official a Lbws$a;a:Lcom/mojang/serialization/Codec;
      intermediary field_39119 Lnet/minecraft/class_7428$class_7443;field_39119:Lcom/mojang/serialization/Codec;
      named CODEC Lnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;CODEC:Lcom/mojang/serialization/Codec;
  • Constructor Details

    • PublicKeyData

      public PublicKeyData(PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lbws$a;<init>(Lsd;)V
      intermediary <init> Lnet/minecraft/class_7428$class_7443;<init>(Lnet/minecraft/class_2540;)V
      named <init> Lnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;<init>(Lnet/minecraft/network/PacketByteBuf;)V
    • PublicKeyData

      public PublicKeyData(Instant instant, PublicKey publicKey, byte[] byte2)
  • Method Details

    • write

      public void write(PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      official a Lbws$a;a(Lsd;)V
      intermediary method_44011 Lnet/minecraft/class_7428$class_7443;method_44011(Lnet/minecraft/class_2540;)V
      named write Lnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;write(Lnet/minecraft/network/PacketByteBuf;)V
    • verifyKey

      boolean verifyKey(SignatureVerifier servicesSignatureVerifier, UUID playerUuid)
      Mappings:
      Namespace Name Mixin selector
      official a Lbws$a;a(Laok;Ljava/util/UUID;)Z
      intermediary method_44205 Lnet/minecraft/class_7428$class_7443;method_44205(Lnet/minecraft/class_7500;Ljava/util/UUID;)Z
      named verifyKey Lnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;verifyKey(Lnet/minecraft/network/encryption/SignatureVerifier;Ljava/util/UUID;)Z
    • toSerializedString

      private byte[] toSerializedString(UUID playerUuid)
      Mappings:
      Namespace Name Mixin selector
      official a Lbws$a;a(Ljava/util/UUID;)[B
      intermediary method_43702 Lnet/minecraft/class_7428$class_7443;method_43702(Ljava/util/UUID;)[B
      named toSerializedString Lnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;toSerializedString(Ljava/util/UUID;)[B
    • isExpired

      public boolean isExpired()
      Mappings:
      Namespace Name Mixin selector
      official a Lbws$a;a()Z
      intermediary method_43704 Lnet/minecraft/class_7428$class_7443;method_43704()Z
      named isExpired Lnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;isExpired()Z
    • isExpired

      public boolean isExpired(Duration gracePeriod)
      Returns whether the key is expired, with the provided grace period taken into account.
      Returns:
      whether the key is expired, with the provided grace period taken into account
      Mappings:
      Namespace Name Mixin selector
      official a Lbws$a;a(Ljava/time/Duration;)Z
      intermediary method_45103 Lnet/minecraft/class_7428$class_7443;method_45103(Ljava/time/Duration;)Z
      named isExpired Lnet/minecraft/network/encryption/PlayerPublicKey$PublicKeyData;isExpired(Ljava/time/Duration;)Z
    • equals

      public boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • expiresAt

      public Instant expiresAt()
      Returns the value of the expiresAt record component.
      Returns:
      the value of the expiresAt record component
    • key

      public PublicKey key()
      Returns the value of the key record component.
      Returns:
      the value of the key record component
    • keySignature

      public byte[] keySignature()
      Returns the value of the keySignature record component.
      Returns:
      the value of the keySignature record component