![]() |
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 |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Encrypt and Decrypt script | shary | Shell Programming and Scripting | 9 | 12-11-2007 08:11 AM |
| Decrypt Des file - then encrypt | frustrated1 | SUN Solaris | 0 | 09-07-2006 05:38 PM |
| encrypt and decrypt password | sanwish | Shell Programming and Scripting | 2 | 07-14-2006 01:59 PM |
| Encrypt & Decrypt a String | aldowsary | Shell Programming and Scripting | 6 | 05-15-2005 06:32 PM |
| How to decrypt a file encrypted with vi? | Gerry | UNIX for Dummies Questions & Answers | 1 | 04-22-2001 02:44 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Quote:
|
|
||||
|
Hi dere,
There is commad in Unix "crypt"...U can use dis functionality....First of all u ll have to compress the file... % compress myfile % ls -l myfile.Z % dd if=myfile.Z of=myfile.Z.strip bs=3 skip=1 % crypt akey < myfile.Z.strip For Decryption: % (compress -cf /dev/null;crypt < myfile.Z.strip) | uncompress -c > myfile Just check out the above code snippet..... |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|