SetupDeviceKeyBundle

data class SetupDeviceKeyBundle(val accountUuid: UUID, val identityKey: String, val deviceId: Int, val signedPreKey: SignedPreKey, val oneTimeKeys: List<OneTimeKey> = emptyList())

Represents the key-bundle which the device is setting during the set-up-device phase.

Constructors

Link copied to clipboard
constructor(accountUuid: UUID, identityKey: String, deviceId: Int, signedPreKey: SignedPreKey, oneTimeKeys: List<OneTimeKey> = emptyList())

Properties

Link copied to clipboard

The account's UUID which the device is linked to.

Link copied to clipboard

The device's id.

Link copied to clipboard

The identity key of the end-user.

Link copied to clipboard

The device's bundle of one-time-keys. Usually it is 100.

Link copied to clipboard

The SignedPreKey of the end-user.