java.lang.Object
java.lang.Record
it.auties.whatsapp.model.signal.sender.SenderChainKey
- All Implemented Interfaces:
it.auties.protobuf.model.ProtobufMessage,it.auties.protobuf.model.ProtobufObject
public record SenderChainKey(int iteration, byte[] seed)
extends Record
implements it.auties.protobuf.model.ProtobufMessage
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final byte[]private final intThe field for theiterationrecord component.private static final byte[]private final byte[]The field for theseedrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionSenderChainKey(int iteration, byte[] seed) Creates an instance of aSenderChainKeyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of theiterationrecord component.next()byte[]seed()Returns the value of theseedrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
iteration
private final int iterationThe field for theiterationrecord component. -
seed
private final byte[] seedThe field for theseedrecord component. -
MESSAGE_KEY_SEED
private static final byte[] MESSAGE_KEY_SEED -
CHAIN_KEY_SEED
private static final byte[] CHAIN_KEY_SEED
-
-
Constructor Details
-
SenderChainKey
public SenderChainKey(int iteration, byte[] seed) Creates an instance of aSenderChainKeyrecord class.- Parameters:
iteration- the value for theiterationrecord componentseed- the value for theseedrecord component
-
-
Method Details
-
toMessageKey
-
next
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
iteration
public int iteration()Returns the value of theiterationrecord component.- Returns:
- the value of the
iterationrecord component
-
seed
public byte[] seed()Returns the value of theseedrecord component.- Returns:
- the value of the
seedrecord component
-