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
Mappings:
Namespace Name
official ajp$b
intermediary net/minecraft/class_3515$class_7425
named net/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData
official b
intermediary comp_739
named salt
official c
intermediary comp_740
named signature
  • Field Details

    • salt

      private final long salt
      The field for the salt record component.
    • signature

      private final byte[] signature
      The field for the signature record component.
    • field_39040

      public static final NetworkEncryptionUtils.SignatureData field_39040
      Mappings:
      Namespace Name Mixin selector
      official a Lajp$b;a:Lajp$b;
      intermediary field_39040 Lnet/minecraft/class_3515$class_7425;field_39040:Lnet/minecraft/class_3515$class_7425;
      named field_39040 Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;field_39040:Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;
  • Constructor Details

    • SignatureData

      public SignatureData(PacketByteBuf packetByteBuf)
    • SignatureData

      public SignatureData(long long2, byte[] byte2)
  • Method Details

    • isSignaturePresent

      public boolean isSignaturePresent()
      Mappings:
      Namespace Name Mixin selector
      official a Lajp$b;a()Z
      intermediary method_43528 Lnet/minecraft/class_3515$class_7425;method_43528()Z
      named isSignaturePresent Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;isSignaturePresent()Z
    • write

      public void write(PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      official a Lajp$b;a(Lqn;)V
      intermediary method_43529 Lnet/minecraft/class_3515$class_7425;method_43529(Lnet/minecraft/class_2540;)V
      named write Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;write(Lnet/minecraft/network/PacketByteBuf;)V
    • method_43530

      public byte[] method_43530()
      Mappings:
      Namespace Name Mixin selector
      official b Lajp$b;b()[B
      intermediary method_43530 Lnet/minecraft/class_3515$class_7425;method_43530()[B
      named method_43530 Lnet/minecraft/network/encryption/NetworkEncryptionUtils$SignatureData;method_43530()[B
    • 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
    • equals

      public final boolean equals(Object object)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • salt

      public long salt()
      Returns the value of the salt record component.
      Returns:
      the value of the salt record component
    • signature

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