To encrypt and decrypt files with a password, use gpg command. It is an encryption and signing tool for Linux/UNIX like operating system such as FreeBSD/Solaris and others.
gnupg
GnuPG stands for GNU Privacy Guard and is GNU's tool for secure communication and data storage. It can be used to encrypt data and to create digital signatures. It includes an advanced key management facility.
Encrypting a file in linux
To encrypt a single file, use command gpg as follows:
$ gpg -c filename
To encrypt myfinancial.info.txt file, type the command:
$ gpg -c myfinancial.info.txt
Sample output:
Enter passphrase:<YOUR-PASSWORD> Repeat passphrase:<YOUR-PASSWORD>
This will create a myfinancial.info.txt.gpg file. Where,
- -c : Encrypt with symmetric cipher using a passphrase. The default symmetric cipher used is CAST5, but may be chosen with the --cipher-algo option. This option may be combined with --sign (for a signed and symmetrically encrypted message), --encrypt (for a message that may be decrypted via a secret key or a passphrase), or --sign and --encrypt together (for a signed message that may be decrypted via a secret key or a passphrase).
Please note that if you ever forgot your password (passphrase), you cannot recover the data as it use very strong encryption.
Decrypt a file
To decrypt file use the gpg command as follow:
$ gpg myfinancial.info.txt.gpg
Sample outputs:
gpg myfinancial.info.txt.gpg gpg: CAST5 encrypted data Enter passphrase:<YOUR-PASSWORD>
Decrypt file and write output to file vivek.info.txt you can run command:
$ gpg myfinancial.info.gpg –o vivek.info.txt
Also note that if file extension is .asc, it is a ASCII encrypted file and if file extension is .gpg, it is a binary encrypted file.
See also:
- GnuPG Frequently Asked Questions
- Consult man page of gpg
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 42 comments… read them below or add one }
Thanks! This helped me a lot. Encryption everywhere seems to be only about e-mail. I just wanted to encrypt a password file.
This came very handy…and is now bookmarked! Thanks.
This is fine as far as it goes. However, if you decrypt a file and look at it using a word processor (say), the word processor might well leave back-up copies of your sensitive file in /tmp or in a back-up directory. So when you delete your unencrypted file, you have to delete any other copies that might be lying around the filing system too. A better way around this problem might be to use whole partition encryption: http://encryptionhowto.sourceforge.net/Encryption-HOWTO-4.html
But even then, you need to watch out for stuff that may be on a different disk/partition, e.g. in /tmp.
David,
Good point about backup files. Thanks for sharing howto links.
Appreciate your post!
Great post.
I need to encript a backup file in non interactive mode, so I do not have a prompt to type the password, because is a automated script.
Do you have how I can proceed?
Tkx in advance.
Sirs,
can i encrypt squid.conf or httpd.conf that are located on /etc/xxx folder… knowing that squid process and apache process need to access this file in order to read the file configuration! if this is not workable in my case… is there a way to hide the .conf files from even the root users.. please your help is highly appreciated…
greetings from lebanon
Regards,
i want to encrypt/hide .conf. your help is highly appreciated…
thank for help I want to decrypt rar files
1) Unless the app is aware of the encryption , you cannot encrypt such .conf files.
2) It is possibles to write a script that wraps the process , i.e squid and call the gpg , decrypt the file and then call the squid , reencrypt the file , delete the .conf …
It is actually bound to how the process calls his conf files ,i.e at the beginning , in the loop …
3) You can even recompile squid with some crypting lib. and change all calls to read file to be proceeded by a decryption function.
4) No body but the root should have the root pass , other users must be in specific groups that enable them to do some stuff that normally only the root can do and hence avoid giving them the root pass.
I thought, even if you encrypt a backup script, it will still run as it is.
But it’s not.
I just want to hide the backup script form others because it contains critical information about the files being backed up.
Jay: I think you will need to create a new backup script that decrypts and reads an encrypted file containing the critical information about the files being backed up.
The information about the files will be protected, and the script should still run normally.
It’s very nice stuff … encryption and decryption in linux and tell me how to set password for each file and folder under linux.
A good post nixcraft, but I have a doubt, how linux encrypts? I mean in a navite level, without use particular apps or tools… thx
Non interactive encrypt/decrypt:-
Encrypt it…
gpg –yes –passphrase [passphrase] -c [filename]
Decrypt it…
gpg –yes –passphrase [passphrase] [filename]
Piece of pie…
This was a life saver.
So I thought this would help, but unfortunately it didn’t. I’m wondering why. Also, when I do a “gpg -h”, “–passphrase” doesn’t show up as one of the options. Is this like a secret option or something?
Hi,
You must to use the follow commands:
gpg –batch –yes –passphrase [passphrase] -c [filename]
Bye,
where would you check if the passphrase is entered correctly or not? If I want to encrypt a binary file to enter the correct password before someone can run my program, where do I implement the passphrase check? In the binary file or in my program?
Thank u very much
Sirs
I need to encrypt folder with it’s content with out need to encrypt all files inside this folder please your help.
your help is highly appreciated
Best Regard
Yeah i also want to encrypt a folder.. please help…
Hai,…
I want to encrypt squashfs.img(squashfs.img.enc) file in Fedora Live OS. It should be decrypted while booting.. Can anyone knows how to do this?
For Gnome if you prefer the right click option install “seahorse-plugins” from synaptic or apt-get install, if you’re a KDE user you can install kgpg, both options allow key generating and management alone with right click encrypt options. If you prefer the GUI option that is.
That’s very interesting. I like it.
Hi,
I have encryted the file in windows machine but when i trying to dycrypt from linux using gpg filename it is not encrypting .the eror come has
gpg: encrypted with RSA key, ID 83994B4A
gpg: decryption failed: secret key not available
When i am use the command gpg -d also same eroro
Thanks
pavan
Hi,
You must to use the follow commands:
gpg –batch –yes –passphrase [passphrase] -c [filename]
Bye,
Its not working
Hi,
Is there any difference between .gpg and .pgp files. I have a pgp encrypted file and a key. Can anyone please let me know how to decrypt it through PHP or shell command? Thanks in advance.
Regards,
N Naresh Kumar
Hi
My command is ” gpg –yes –passphrase=mypassphrase myfile.pgp ” its works fine in my terminal but i try to execute this command though php using
system (“gpg –yes –passphrase=mypassphrase myfile.pgp”,$res);
its return 2 ie its doesn’t work . Then i tried this command to execute through perl cgi its report compilation error in “–” characters in above command
Could you please what are the steps if we need to do the pgp encryption using shell script.
I got the following non-interactive commands to work on Oracle Enterprise Linux. I assume that contains a pretty standard version of gpg:
To encrypt a file:
Here the passphrase is “welcome” and –passphrase-fd 0 means take the passphrase from standard input
To decrypt the same file and pipe contents to standard output:
The passphrase is again “welcome” and I tee the output to yar.txt
You can get info on these — commands which don’t show up in gpg –help by looking at the gpg man pages (man gpg)
BTW, I’m just learning this stuff myself, so don’t expect any other pearls of wisdom from me. Needed to get this working non-interactively for work, and thought I’d share what I learned.
Thanks – This topic helped me to extract a gpg file using PGP tool ..
Thanks a lot this was very helpful to me.
Is there a way to decrypt if I dont remember the passphrase ??
What can i do if i want to encrypt a folder?
If you use kgpg then the folder will be compressed before it is encrypted but here have been changes to seahorse and Gnome 3, it is called seahorse-nautilus now and I can’t be sure if it will compress the folder first before encrypting because it has lost a lot of useful functions in the change. If anybody is afraid of command line, not that it is a bad thing, just a little long winded and confusing, check out EW (Encryption Wizard), it uses java, cross platform and can encrypt multiple files at once as well as compressing folders before encryption.
hey paul, i have a CentOs server , what should i do to encrypt a folder, use kgpg before using gpg?
kgpg is a GUI front end for gpg on the KDE desktop, it allows you to create, manage and delete private and public keys as well as symmetric and asymmetric encryption. It is integrated into Dolphin which is the native KDE file manager. Once you have created the keys it’s just a matter of right click, then if my memory serves me right, actions and then encrypt file. For Gnome 3 use seahorse-nautilus and all related plugins from the repositories for the same right click function to encrypt files using gpg, seahorse and seahorse-nautilus are also a gpg GUI front end. For newer desktops such as MATE, seahorse-nautilus won’t work because MATE uses a different file manager which I think is called Caji, in this case you could use 7z and compress with a password. 7z compression uses 128 bit or 256 bit AES, not sure which it is so please forgive me on that.
I forgot, 7z password protection isn’t available on KDE, but is for other desktop environments such as MATE and Gnome3, it’s something to do with a problem with the archive manager for KDE, although you can install file-roller and use the password protection that way if need be.
If you want to encrypt a folder and all it’s contents that will stay on the drive and not be compressed or archived, maybe you could check out CryptKeeper. Cryptkeeper is also very useful for cloud synchronizing as it encrypts every file within the folder individually and renames them. For Cryptkeeper you can unlock the folders by using the icon in the system tray, then inputting your password and the folder will appear in your file manager as any other folder. Cryptkeeper works for KDE, Gnome 3 and MATE from my experience although you might have to put it in the list of start-up applications if you don’t want to manually start it every session. I hope all this is helpful to everybody here.
hello sir,
i want to modify my .pfofile to customise my user account. is it based on kind of shell ?
or i can change the any profile.
tanks, its help to protect my file