Skip to content

Instantly share code, notes, and snippets.

/decrypted Secret

Created July 22, 2015 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/f88486d1d2a6616d5328 to your computer and use it in GitHub Desktop.
Save anonymous/f88486d1d2a6616d5328 to your computer and use it in GitHub Desktop.
# KEEP YOUR PRIVATE KEYS SAFE! Anyone who can read this can spend your Litecoins.
T8uP8GiWhQ141aUtdBSCyjde5zscDcvWq4J74kZXVneVAw9pFCjj 2014-01-04T04:56:13Z
U2FsdGVkX1+ExnMgpWVMi/ZQI/5s35fXYO3gjIj/3unMjsnNA720kL3ic93sJuBynOZxAJESBV0w
TmZb6T/qwmaxVnnxRLY0w9xx/zWFccUeTAA451pjlfTX27PAjJm6EiqBaYt/DfWpbFGlKgrib2dC
rSJ24aukiXNad4dKwOWhPCPI/dsxdhmTTlY0m2fDInvn2TpDZCL6prIrGp+jfwci6INeU2hCMaIB
E6tbqlQ=
rem save this code as OPENSSL.BAT
rem usage: 1. OPENSSL.BAT
rem 2. type full path to encrypted file ("c:\temp\encrypted")
rem 3. decrypted file saved with .txt extension ("c:\temp\decrypted.txt")
rem
set /p xin=
set xout="%xin%.txt"
openssl enc -d -aes-256-cbc -a -in "%XIN%" -out %XOUT%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment