|
|
|
|
|
|
| |
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 | | | Generating and Matching Secure and Strong Password Hash Categories : PHP, PHP Classes, Cryptography, Security | | | 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 | | | Use of bitmasks to represent permissions Categories : PHP, Authentication, Bitwise Operators, Security, PHP Classes | | | Scan Apache access log files and report possible worms attack Categories : PHP, PHP Classes, Security, Apache, Log Files | | | Scramble Eggs - php class to scramble/encode Categories : PHP, PHP Classes, Security, Encryption | | | Antispoof - a class to help prevent people hi-jacking and misusing parts of a website Categories : PHP, PHP Classes, Security | | | Forms protected from XSS attacks (FOPAXSS) Categories : PHP, PHP Classes, Form Processing, Security | | | Encoding data using PGP via PHP's proc_* functions Categories : Cryptography, Security, Email, PHP, PGP | | | MySQL database class Categories : PHP, MySQL, Databases, PHP Classes | | | PHP MIME Decoder. This class decodes Mime Encoded email message.
Attachments are stored in a director. Works with Multipart/alternative,
multipart/mixed etc.
see http://p3mail.com for example. Categories : PHP, PHP Classes, Email | | | A very basic and fast XML parser Categories : PHP, PHP Classes, XML | | | send_mail function to defeat Header Injection Hacking/Spamming Categories : PHP, Email, Form Processing, Security | | | AutoCMS - This class can be used to generate a basic content site. Categories : PHP, Content Management, PHP Classes | | | ClassFuncDoc - This script is a classes and functions documentation tool. Categories : PHP, Classes and Objects, Documentation, PHP Classes, Complete Programs | |
| | | | 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.
| |
|
|