|
|
|
|
|
|
| |
This is a class which will encrypt the data into a numeric string. The encryption is not a straight forward one. It incorporates the ascii of the character does some mathemetical calculation over it using the key and then just returns the value (numerical value). This return value is then concatenated to give a numeric representation of the whole text. The decryption logic is a reverse application of the logic for encryption.
| <?php
/** Class for encryption and decryption of the text. This is a simple class which returns the numeric encryption of the text.
**It can be further optimised to give better encryption output.
**Saji Nair
**/
class Encryption{
var $key;
var $text;
function Encryption(){
$this->key="SajIMTsENcRYptiOnKey"; /// key to encrypt with
}
/**Function to encrypt the text using the key.
** Returns numeric values for each character concatinated togather.
**Saji Nair
**/
function encrypt(){
$lenText=strlen($this->text);
$lenKey=strlen($this->key);
$str="";
$j=0;
for($i=0;$i<$lenText;$i++,$j++){
if($j==$lenKey){
$j=0;
}
$val=(ord($this->text[$i])*2)+ord($this->key[$j]);
$str.=$val;
}
return $str;
}
/**Function to encrypt the text using the key.
** Returns the text from the encrypted numeric value.
**Saji Nair
**/
function decrypt(){
// $this->text=explode("##",$this->text);
$temp=$this->text;
$temptext=array();
$templen=strlen($temp);
for($i=0,$j=0;$i<$templen;$i=$i+3,$j++){
$temptext[$j]=substr($this->text,$i,3);
}
$lenText=count($temptext);
$lenKey=strlen($this->key);
$str="";
for($i=0,$j=0;$i<$lenText;$i++,$j++){
if($j==$lenKey){
$j=0;
}
$val=$temptext[$i]-ord($this->key[$j]);
$val=$val/2;
$str.=chr($val);
}
return $str;
}
}
?> | |
Usage Example
| <?php
$objCls=new Encryption();
$objCls->text="this is my text.";
$objCls->text=$objCls->encrypt();
$objCls->decrypt();
?> | | |
|
| A damaged image generator (class) for validating text.
CAPTCHA - Completely Automated Public Turing test to tell Computers and Humans Apart Categories : PHP, PHP Classes, Security, GD image library, Security | | | Antispoof - a class to help prevent people hi-jacking and misusing parts of a website Categories : PHP, PHP Classes, Security | | | Scramble Eggs - php class to scramble/encode Categories : PHP, PHP Classes, Security, Encryption | | | Generating and Matching Secure and Strong Password Hash Categories : PHP, PHP Classes, Cryptography, Security | | | Use of bitmasks to represent permissions Categories : PHP, Authentication, Bitwise Operators, Security, PHP Classes | | | Password Creator: This PHP code exmaple shows how to use bitwise operations on a single variable and using it as a flagged variable. The class generates passwords of a given length using specified characters and the flags. Categories : PHP, PHP Classes, Algorithms, Security | | | Scan Apache access log files and report possible worms attack Categories : PHP, PHP Classes, Security, Apache, Log Files | | | very simple ftp class Categories : PHP, PHP Classes, FTP | | | PHP Paypal IPN Integration Class v1.0.0 Categories : PHP, PHP Classes, Payment Gateways | | | A Timing Class Categories : PHP, PHP Classes, Date Time | | | The class to check load time of your script
VERY usefull for relatively slow applications, but not only.. Categories : PHP, PHP Classes, Debugging | | | A very simple PHP single password cookie based login without usernames. Categories : PHP, Cookies, Security, Beginner Guides | | | Create HTML forms dynamicly using Javascript & PHP Categories : PHP, PHP Classes, Java Script | | | usercounter class Categories : PHP, PHP Classes, Databases, MySQL, Environment Variables | | | RSS parser.
Parses RSS into an array. Quick and nasty but does the job.
No checking is done for correct Tags, only correct XML.
PHP4 needed to display result (uses print_r). Categories : PHP, XML, PHP Classes, Rich Site Summary (RSS) | |
| | | | saji nair wrote :1682
This is not a simple ascii conversion function. This piece of code converts text to numeric values irrespective of the length of data to be ciphered. If you try to convert the output you see for encrypt function into character you will get something different. Secondly this ciphered value can be deciphered only using the decrypting function. I have concatenated the numeric (ciphered) values of individual text. I had to stop at the numeric value of characters if you convert it to characters after ciphering then it gives you some characters which are not compatible with the databases like MySQL. So when I tried to use that with password encryption for MySQL I was not able to retrive the exact value from the database once the chphered value was inserted, so the comparision was failing. Thats why I have used the numeric values only and concatenated it directly.
| |
|
|
|