# A List of Ephemeral File Sharing Services

> Source: <https://gist.github.com/Prajjwal/2226c6a96d1d72abc713e889160a9f81>
> Published: 2017-01-24 12:29:36+00:00

Contributions welcome.
It's a good idea to encrypt your files locally before sending them out, even if you trust the service. Here's a short how-to.
Encrypt with 256 bit AES:
openssl enc -aes-256-cbc -salt -in <infile> -out <outfile>
Decrypt:
openssl enc -aes-256-cbc -d -in <infile> -out <outfile>
Skip the -in
and -out
options to make openssl use STDIN
or STDOUT
.
See man enc
for information on available ciphers. aes-256-cbc
and bf
are
what I generally use.
- u/86rd9t7ofy8pguh's analyzed the state of https on some of these sites here.
