Package-level declarations

Wallet Management

Wallet Management

To start working with a document wallet, you need to create it. You need to come up with a password for your wallet and create it with it. You can also check if a wallet has been created for your account.

val walletManager: WalletManager
val password = "mybestpassword"

if (!walletManager.isWalletCreated()) {
walletManager.createWallet(password)
}

If you forgot your password, or just want to delete your document wallet, then just use the appropriate method.

val walletManager: WalletManager

walletManager.deleteWallet()

Every time you start the application, you need to log in to the document wallet to continue working.

val walletManager: WalletManager

walletManager.authenticate()

Types

Link copied to clipboard
interface WalletManager

A component that allows you to create, delete a wallet of documents, as well as perform authorization