Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- ciphers=$(openssl list -cipher-commands)
- for x in $ciphers; do
- out=$(openssl $x -d -in <filehere> -out <outputfile> -pass pass:<pass>)
- done
- #<filehere> the file you would like to decrypt
- #<outputfile> output file with decrypted text
- #<pass> password for file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement