Skip to content

Instantly share code, notes, and snippets.

@robcowie
Created February 23, 2015 10:43
Show Gist options
  • Save robcowie/615b8c0e33f2fb5e0cd5 to your computer and use it in GitHub Desktop.
Save robcowie/615b8c0e33f2fb5e0cd5 to your computer and use it in GitHub Desktop.
# Send
openssl aes-256-cbc -salt -a -e -in /path/to/file | nc -l 3333
# Receive
nc {ip} 3333 | openssl aes-256-cbc -salt -a -d -out /path/to/file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment