Module it.auties.cobalt
Record Class SenderMessageKey
java.lang.Object
java.lang.Record
it.auties.whatsapp.model.signal.sender.SenderMessageKey
public record SenderMessageKey(int iteration, byte[] seed, byte[] iv, byte[] cipherKey)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final byte[]The field for thecipherKeyrecord component.private final intThe field for theiterationrecord component.private final byte[]The field for theivrecord component.private final byte[]The field for theseedrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionSenderMessageKey(int iteration, byte[] seed) SenderMessageKey(int iteration, byte[] seed, byte[] iv, byte[] cipherKey) Creates an instance of aSenderMessageKeyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbyte[]Returns the value of thecipherKeyrecord component.private static byte[]createCipherKey(byte[] seed) private static byte[]createIv(byte[] seed) final booleanIndicates whether some other object is "equal to" this one.private static byte[][]getDerivedSeed(byte[] seed) final inthashCode()Returns a hash code value for this object.intReturns the value of theiterationrecord component.byte[]iv()Returns the value of theivrecord component.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. -
iv
private final byte[] ivThe field for theivrecord component. -
cipherKey
private final byte[] cipherKeyThe field for thecipherKeyrecord component.
-
-
Constructor Details
-
SenderMessageKey
public SenderMessageKey(int iteration, byte[] seed) -
SenderMessageKey
public SenderMessageKey(int iteration, byte[] seed, byte[] iv, byte[] cipherKey) Creates an instance of aSenderMessageKeyrecord class.- Parameters:
iteration- the value for theiterationrecord componentseed- the value for theseedrecord componentiv- the value for theivrecord componentcipherKey- the value for thecipherKeyrecord component
-
-
Method Details
-
createIv
private static byte[] createIv(byte[] seed) -
createCipherKey
private static byte[] createCipherKey(byte[] seed) -
getDerivedSeed
private static byte[][] getDerivedSeed(byte[] seed) -
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
-
iv
public byte[] iv()Returns the value of theivrecord component.- Returns:
- the value of the
ivrecord component
-
cipherKey
public byte[] cipherKey()Returns the value of thecipherKeyrecord component.- Returns:
- the value of the
cipherKeyrecord component
-