Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

encrypt a file 1

Status
Not open for further replies.

lelo25

Technical User
Nov 13, 2003
40
LB
Hello,
Is there a way to encrypt a file on aix 4.3
Please help ,
RGDS
 
Hi Lelo,

If you install OpenSSL, you will have access to the openssl command, which can be used to encrypt/decrypt files.

For example (using Blowfish).

Code:
# Encrypt orig_file to enc_file.
openssl bf -salt -in ./orig_file >./enc_file

# Decrypt enc_file back to orig_file.
openssl bf -d -in ./enc_file >./orig_file2

You can obtain the source to build OpenSSL at
Hope that helps :)

____________________
Sometimes it pays to stay in bed on Monday, rather than spending the rest of the week debuging Mondays code.
 
GNU Privacy Guard (gpg), free replacement for PGP is available from Bull Freeware.

Rod Knowlton
IBM Certified Advanced Technical Expert pSeries and AIX 5L

 
d3vzero,

who can decrypt the file? everyone or just a user who encrypted it?
 
sorry for stupid question - now I know it is password protected.


r, m.
 
Hello,
After downloading the file gnupg 1.2.4.tar.bz2
what are the steps that we must follow in order to install
and run gnupg ?
Please help ,RGDS.
 
easiest way to install packages - #
download .exe file from bullfreeware website.
Then following simple intructions to install.
 
Best to read The GNU Privacy Handbook after installing. The handbook is also available in other languages and formats from the GPG home page. Click on "Guides" under Documentation in the sidebar. I'd link directly, but the forum software doesn't seem to be able to deal with parentheses in URLs.

As a newcomer (I assume) to public key encryption, you'd be better off reading chapters 2, 3, and 4 before chapter 1. Chapter 1 is the quick start guide, and will make a lot more sense if you read it last.

Rod Knowlton
IBM Certified Advanced Technical Expert pSeries and AIX 5L

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top