The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Operating Systems > AIX
.
google unix.com



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 10: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 09:38 AM
Does unix has password protection for zip files? p_prathaban UNIX for Advanced & Expert Users 6 02-19-2004 09:46 AM
Zipping with password or encryption dsimpg1 UNIX for Dummies Questions & Answers 2 09-21-2001 12:57 AM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 07-05-2006
Registered User
 

Join Date: Jul 2006
Posts: 20
File password protection/encryption

Can it be done? Ive read in a few places that the crypt program no longer exists on AIX...if its do-able please tell me how.
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-05-2006
Registered User
 

Join Date: Feb 2006
Location: Schenectady, NY
Posts: 134
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
#
To decrypt, simply swap your -in and -out file parameters and add a -d to the command line:

Code:
# openssl enc -d -aes-256-cbc -in file.enc -out file
enter aes-256-cbc encryption password: password
#
Reply With Quote
  #3 (permalink)  
Old 07-09-2006
Registered User
 

Join Date: Jun 2006
Posts: 11
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.
Reply With Quote
Google The UNIX and Linux Forums
Reply

Bookmarks

Tags
None

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:




All times are GMT -4. The time now is 06:42 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66