Program to encrypt a file so that it is safe to email

3

I need to be able to email a very sensitive file. I don't want any one without a password to be able to see anything in it.

Is there a free program out there that will do a really good encryption based on a password and then let me email it and pass on the password (by voice) so that it can be decrypted on the other side?

Vaccano

Posted 2010-02-14T21:29:31.290

Reputation: 5 977

Question was closed 2014-12-30T14:43:50.477

Answers

6

Use 7-Zip to encrypt into a zip file, using AES encryption, and you're all set.

Iain

Posted 2010-02-14T21:29:31.290

Reputation: 4 399

1This method does not use private/public key pairs and cannot give assurance of true authorship of the encrypted files. PGP would be a better solution. – kzh – 2010-10-06T16:21:23.573

But far too complicated for the ordinary user. :o( – Iain – 2010-10-26T09:54:46.777

5

You can use PGP to encrypt your mail and you can add a signature. It's a everyday plus !

Kami

Posted 2010-02-14T21:29:31.290

Reputation: 3 108

3

Truecrypt is my favourite way of encrypting sensitive data. As well as encrypting files, it can also encrypt drives (perfect for carrying stuff around on a USB stick). The program works on Windows, Mac and Linux too.

John Rabotnik

Posted 2010-02-14T21:29:31.290

Reputation: 1 021

3

PGP is one of the best methods to do this. It is more assured that the intended recipient and only the intended recipient can read your file. This will require them to generate a private and public key pair. This is what makes PGP a pretty good privacy measure. They just give you the public key in which you encrypt the file with. Nobody but the owner of the private can decrypt the file.

For scenarios like yours is why PGP was created.

A good implementation of OpenPGP is GNU Privacy Guard (gpg). If you have gpg installed and you really just want basic encryption without worrying about the extra security of public and private key pairs, you could use gpg to just password protect a file:

$ gpg -c myfile

And to decrypt this file:

$ gpg myfile.gpg

kzh

Posted 2010-02-14T21:29:31.290

Reputation: 3 213

1

Sophos Free Encryption is what we use at work.

The recipient will need to install it too.

It can create self extracting exe files but you may have trouble sending exe via email

Shevek

Posted 2010-02-14T21:29:31.290

Reputation: 15 408