java.lang.Object
java.lang.Record
nl.andrewl.concord_core.msg.types.client_setup.KeyData
- Record Components:
iv
- The initialization vector bytes.salt
- The salt bytes.publicKey
- The public key.
- All Implemented Interfaces:
Message
This message is sent as the first message from both the server and the client
to establish an end-to-end encryption via a key exchange.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionKeyData
(byte[] iv, byte[] salt, byte[] publicKey) Creates an instance of aKeyData
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.byte[]
iv()
Returns the value of theiv
record component.byte[]
Returns the value of thepublicKey
record component.byte[]
salt()
Returns the value of thesalt
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface nl.andrewl.concord_core.msg.Message
byteSize, getTypeSerializer
-
Field Details
-
Constructor Details
-
Method Details
-
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)
. -
iv
public byte[] iv()Returns the value of theiv
record component.- Returns:
- the value of the
iv
record component
-
salt
public byte[] salt()Returns the value of thesalt
record component.- Returns:
- the value of the
salt
record component
-
publicKey
public byte[] publicKey()Returns the value of thepublicKey
record component.- Returns:
- the value of the
publicKey
record component
-