![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| User name and password encryption | satguyz | High Level Programming | 5 | 02-23-2007 11:10 AM |
| Password safe encryption strength | keelba | UNIX for Dummies Questions & Answers | 1 | 10-19-2005 01:09 PM |
| Password encryption/decryption in flat-text files | domivv | High Level Programming | 2 | 03-04-2005 10:38 AM |
| Does unix has password protection for zip files? | p_prathaban | UNIX for Advanced & Expert Users | 6 | 02-19-2004 10:46 AM |
| Zipping with password or encryption | dsimpg1 | UNIX for Dummies Questions & Answers | 2 | 09-21-2001 12:57 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
AIX dropping crypt surprised me too. Using standard AIX software, no, I do not believe there is a way to password encrypt a file. However, you can compile/install OpenSSL available from http://www.openssl.org
There are oodles of encryption algorithms and encrypting a file is quite simple. Code:
# openssl enc -aes-256-cbc -in file -out file.enc enter aes-256-cbc encryption password: password Verifying - enter aes-256-cbc encryption password: password # Code:
# openssl enc -d -aes-256-cbc -in file.enc -out file enter aes-256-cbc encryption password: password # |
|
||||
|
You don't even have to compile OpenSSL. The first part of this rsync tutorial (http://www.pseriestech.org/forum/tut...-files-89.html) explains where to get and how to install OpenSSL and OpenSSH to make rsync more secure.
|
| Sponsored Links | ||
|
|