In cryptography, encryption is the process of transforming information (referred to as plaintext) using an algorithm (called cipher) to make it unreadable to anyone except those possessing special knowledge, usually referred to as a key.
Mcrypt is a simple crypting program, a replacement for the old unix crypt(1). When encrypting or decrypting a file, a new file is created with the extension .nc and mode 0600. The new file keeps the modification date of the original. The original file may be deleted by specifying the -u parameter. If no files are specified, the standard input is encrypted to the standard output.
Sample Shell Script Wrapper To Encrypt Any Text File
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 | #!/bin/bash # Write a shell script to encrypt any text file # ------------------------------------------------------------------------- # Copyright (c) 2001 nixCraft project <http://cyberciti.biz/fb/> # This script is licensed under GNU GPL version 2.0 or above # ------------------------------------------------------------------------- # This script is part of nixCraft shell script collection (NSSC) # Visit http://bash.cyberciti.biz/ for more information. # ------------------------------------------------------------------------- file=$1 echo -n "Enter a file name : " read file if [ ! -f $file ] then echo "$file not a file!" exit 1 fi echo -n "Enter a Password : " read password # do encryption using UNIX crypt command # this command will prompt for a password crypt $password < $file > $file.cpy echo "$file.cpy created as encrypted file" |
can u please give me a script file for squid server configuration,
in which the user have the privilege to input the access list.
pleease upload it soon.
Thanx I want to create text file having multiple data and to print it.
if any one tell the scripts to encrypt the password while adding multiple user…
if i encrypt squid.conf file, will system able to read encrypted file?
Noop.
please how i can install crypt ?
i type crypt and tap he give me cryptsetup!!
can u please help us what is this mean?
thank you
good job