Secured encrypted files via Linux


 
Thread Tools Search this Thread
Operating Systems Linux Secured encrypted files via Linux
# 1  
Old 05-06-2010
Secured encrypted files via Linux

I need to encrypt a ".txt" file with password settings and it should decrypt the file automatoically when end user types correct password.

Can some one help me on this.

Thank you
# 2  
Old 05-06-2010
To encrypt a file using 256-bit AES (Advanced Encryption Standard)
Code:
openssl enc -aes-256-cbc -salt -a -in FILE.TXT - out FILE.ENC -pass pass:MYPASSWORD

To decrypt the file
Code:
openssl enc -d -aes-256-cbc -a -in FILE.TXT -pass pass:MYPASSWORD

# 3  
Old 05-07-2010
If you use vim editor, :X will ask for a passphrase to encrypt. By entering the same in the other side will decrypt.
# 4  
Old 05-07-2010
Thanks for the reply. I worked on this "openssl" already but still this confuses me.
End user doesnot have any access to Linux to run the decrypt script.
Just they download the ".txt " file what I send and type the password in order to decrypt the file.

May be i am not putting this correctly.Appreciate your help

Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Converting secured pdf files to pdf using acroread

Does anybody have idea of Converting secured pdf files to pdf using acroread ? ---------- Post updated at 04:49 PM ---------- Previous update was at 04:44 PM ---------- This file is not password protected. (4 Replies)
Discussion started by: Soham
4 Replies

2. Shell Programming and Scripting

Grabbing data from a secured website

Hello there, I am a beginner in Perl, and I have a challenging project: I have to create a program that checks regularly on an online bank account for new operations, it should then feed a database keeping track of all the money going in and out. Of course the login details of this online... (4 Replies)
Discussion started by: freddie50
4 Replies

3. UNIX for Advanced & Expert Users

Accessing secured server using shell script

Hi, I was trying to connect secure server using SFTP, but end up in error. Im looking for a shell script which will connect my secured FTP server For EG: hostname = example.com username = fed password = pass port = 993 Destination = web Push some tar file into web folder which is in... (3 Replies)
Discussion started by: Paulwintech
3 Replies

4. Shell Programming and Scripting

curl script to download files from Secured HTTPS server?

curl -# -v -d "sendusername=myname&password=mypassword&wheretogo=download.php" -L -o test.zip http://www.ims-dm.com/cgi/securedownload.php?p=HIREFTPM\&prodtype=hire/test.zip * About to connect() to www.ims-dm.com port 80 * Trying 209.61.193.139... connected * Connected to www.ims-dm.com... (1 Reply)
Discussion started by: laknar
1 Replies

5. UNIX for Dummies Questions & Answers

how to compare 2 encrypted files?

I have 2 files :- 1) f1.txt and f2.txt.Both contain some text as - 2)Now I did : output: I got them to be equal. 3) I encrypted them using gpg and with the SAME paraphrase :- 4)Now I did : #cmp f1.txt.gpg f2.txt.gpg (OR) #diff f1.txt.gpg f2.txt.gpg output: I got them to be... (1 Reply)
Discussion started by: nsharath
1 Replies

6. UNIX for Dummies Questions & Answers

How to unzip multiple files (encrypted) in a directory.

Good day all. I want to unzip multiple files in a directory. Suppose there are two files: test.txt.zip and test1.txt.zip Using this command: unzip -o -P test*.zip results in the unzipping of the first file not second. It gives this error: Archive: test.txt.zip caution: filename not... (2 Replies)
Discussion started by: er_ashu
2 Replies

7. UNIX for Dummies Questions & Answers

encrypted files

Hi lads me again trying to get a wee bit fancy with my scripting anyway it dosn't seem to want to run (strange as it may seem) I encrypted a file renamed it and wrote another file that unencrypts it (it contains passwords) (and b4 anyone says I am doing this for my own reasons) In a... (3 Replies)
Discussion started by: w33man
3 Replies

8. UNIX for Advanced & Expert Users

executing encrypted files

Hi, Is there a way of executing encrypted files? I have encrpyted files using vi and crypt, but when I execute the encrypted file, it takes the contents literally (special characters, junk - encrpyted format). Kind Regards, Kawah (4 Replies)
Discussion started by: Kawah Cheung
4 Replies

9. UNIX for Dummies Questions & Answers

executing encrypted files

Hi, Is there a way of executing encrypted files? I have encrpyted files using vi and crypt, but when I execute the encrypted file, it takes the contents literally (special characters, junk - encrpyted format). Kind Regards, Kawah (1 Reply)
Discussion started by: Kawah Cheung
1 Replies
Login or Register to Ask a Question