Skip to content

Instantly share code, notes, and snippets.

View dalofeco's full-sized avatar

Daniel Lopez dalofeco

View GitHub Profile
@dalofeco
dalofeco / keybase.md
Last active May 15, 2019 02:10
Keybase

Keybase proof

I hereby claim:

  • I am dalofeco on github.
  • I am dalofeco (https://keybase.io/dalofeco) on keybase.
  • I have a public key whose fingerprint is BC8D 5ECC D1E6 04AE 9FB6 31BB E416 5535 238F 145C

To claim this, I am signing this object:

@dalofeco
dalofeco / decrypt-rippex.py
Created May 9, 2019 05:00
Rippex/Ripple Wallet File Decryption with Python
from sjcl import SJCL
import base64
import json
import hashlib
print("Welcome to your last hope to decrypt those keys!")
walletFileName = input("Enter your wallet file name: ")
password = input("Enter password: ")
with open(walletFileName) as wallet:
walletData = json.loads(base64.b64decode(wallet.read()))