Export and Import android wallet
- 1.
- 2.Transfer backup to desktop.
- 3.Install openssl
cinst -y openssl
- Restart terminal
- On Ubuntu / Debian through
sudo apt-get install -y openssl
- 4.Decrypt your backup
- You can ignore the warning *** WARNING : deprecated key derivation used. Using -iter or -pbkdf2 would be better.
- On Windows
openssl enc -d -aes-256-cbc -a -md md5 -in "C:\path\to\pandacoin-wallet-keys-2021-04-02" -out "C:\path\to\decrypted-pandacoin-wallet"

- On Ubuntu / Debian
openssl enc -d -aes-256-cbc -a -md md5 -in /path/to/pandacoin-wallet-keys-2021-04-02 -out /path/to/decrypted-pandacoin-wallet
- Enter your password
- 1.
- 2.Open Debug window
- 3.Click Console
- 4.Enter the following:
- On Windows
importwallet "C:\path\to\decrypted-pandacoin-wallet"
- On Ubuntu / Debian
importwallet "/path/to/decrypted-pandacoin-wallet"
.png?alt=media&token=10189b7e-0956-45f7-88ca-3b4058accdd3)
After successful import, make sure to delete the decrypted file again. It is in plaintext and could be opened by anyone that has access to your computer.
Last modified 2yr ago