- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- crypt command
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2003 08:39 AM
03-20-2003 08:39 AM
crypt command
I would be interested to find out if you are making use of the crypt command, as described in section 1 of the man pages.
Please email your feedback, if any, to mehmet@hp.com.
Thanks.
Mehmet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2003 08:43 AM
03-20-2003 08:43 AM
Re: crypt command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2003 10:01 AM
03-20-2003 10:01 AM
Re: crypt command
Well, the OS itself uses it every single time a user PW is read or written.
I've used it occasionally to encrypt e-mail attachments.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2003 10:15 AM
03-20-2003 10:15 AM
Re: crypt command
Yes, make use of it for hiding Oracle passwords that are used in scripts. It's not available (as a command) in AIX which is a pain, are you thinking of withdrawing it?
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2003 10:22 AM
03-20-2003 10:22 AM
Re: crypt command
the system call "crypt(2)" and the command "crypt(1)" are NOT the same, there's a lot of differences!
The system call is using 64 bits of encryption, repeated 21 time to slow it down.
But the command line is to encrypt files and is actually weakend to the point where everybody (with a pocket calculator) is able to decrypt it...
And the command was even banned for many years, due to US export regulations (that's why AIX does not deliver it). Even the man page was not available for years, say, under HP-UX (and others).
If you are about to encrypt something, don't even think about using "crypt(1)", but go for something like PGP (Pretty Good Privacy) or the like.
FWIW,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2003 10:34 AM
03-20-2003 10:34 AM
Re: crypt command
Surprisingly, the crypt(3C) library routine does not do encrytion/decryption but is rather a hash. The process (unlike encryption) is intentionally not reversible.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2003 02:57 AM
03-21-2003 02:57 AM
Re: crypt command
See also
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x065e28c64656d71190080090279cd0f9,00.html