3
So I dropped my phone in the toilet... Of course I immediately turned it off and went with the rice technique. I realized later that I had coins on my phone on the bitcoin-wallet on android . Luckily, i was able to turn the phone back on after a day and the first thing I attempted on doing was backup my wallet. I used the back up function and was prompted to enter a password to encrypt with. I did. Then I wanted to decrypt the password (to prove in case of emergency that I could).
openssl enc -d -aes-256-cbc -a -in <filename>
When trying this I'm asked for the password, which I give. Then I'm given a bunch of garbage. I have found that I'm using version 3.53 . Thanks in advance for the help.
It appears the new android app doesn't support SSL decryption as answered above/below – Wizard Of Ozzie – 2014-08-02T10:58:21.533
@Aussie: As in my first paragraph, the decryption itself works fine. It's just that the wallet file format is not plain text and is harder to deal with. – Nate Eldredge – 2014-08-02T13:57:16.923
Yeah, I've not been able to decrypt either. Format has changed. I'll look into it – Wizard Of Ozzie – 2014-08-14T11:07:51.367
Here's a tool that dumps the protobuf format: https://github.com/lloeki/bitcoinj-wallet-dump
– Lloeki – 2016-04-05T14:42:39.227