How to decrypt a MultiBit private key?

2

1

Looking for a way to decrypt a private key that was exported by Multibit WITHOUT using Multibit. I need to move they key elsewhere.

I need to go this route because I can't get the key to import into Multibit properly (even though I have the password).

Thanks!

Joe

Posted 2015-05-29T21:59:10.427

Reputation: 23

Answers

2

The process to decrypt a password protected .key file exported using MultiBit is explained here: https://github.com/jim618/multibit/wiki/Export%20and%20limited%20import%20of%20private%20keys

To decrypt a MultiBit private key export file use:

openssl enc -d -p -aes-256-cbc -a -in \<ciphertext file\> -out \<plaintext file\> -pass pass:\<password\>

Luca Matteis

Posted 2015-05-29T21:59:10.427

Reputation: 4 784