Last active
August 9, 2017 19:09
-
-
Save stephenlb/01341a3a782c9fe6df1200911598afd0 to your computer and use it in GitHub Desktop.
Generate Encrypted Phrases from Command Line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo -n "Hello how are you?" | \ | |
| openssl enc -e -base64 -aes-256-cfb -nopad -nosalt \ | |
| -k `echo -e "$RANDOM $RANDOM $RANDOM" | base64` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Twitter Stream | |
| while true; do curl http://p.pubnub.com/stream/sub-c-78806dd4-42a6-11e4-aed8-02ee2ddab7fe/pubnub-twitter/0/-1; echo; done; |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
AI is born that can decrypt AES.