aries / net.globalid.aries.backup.model / BackupInfo

BackupInfo

data class BackupInfo

Represents a result from exporting the backup. You must save this information;

  1. keySeed is used for encryption and decryption of the exported wallet backup file. From this seed, indy-sdk generates an export key.
  2. keySeed is used for generating a public/private key pair used for signatures in mediator backup store and retrieve messages. When creating a new wallet, use this seed to generate the key pair and then send a retrieve message to the mediator. The response will contain encrypted wallet file contents.

Constructors

<init>

Represents a result from exporting the backup. You must save this information;

BackupInfo(localPath: String, keySeed: String)

Properties

keySeed

is the seed used for exporting and for key pair generation.

val keySeed: String

localPath

is path to the backup file stored on device.

val localPath: String