vote up -1 vote down star

How to encrypt/decrypt text from file with php?

flag

Which version of PHP? What modules do you have compiled into your PHP? What type of encryption? – James Black Oct 1 at 18:09
Any version of PHP.Any version of encryptions.Any modules – AndrewSmith Oct 1 at 18:11
You can look at this question: stackoverflow.com/questions/655691/… – James Black Oct 1 at 18:13
Any version of encryption? Allow me to introduce you to my friend, ROT13... – Frank Farmer Oct 1 at 19:00

3 Answers

vote up 2 vote down check

if you have mcrypt module compiled with your PHP:

function encryptData($value){
   $key = "top secret key";
   $text = $value;
   $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
   $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
   $crypttext = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $text, MCRYPT_MODE_ECB, $iv);
   return $crypttext;
}

function decryptData($value){
   $key = "top secret key";
   $crypttext = $value;
   $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
   $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
   $decrypttext = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, $crypttext, MCRYPT_MODE_ECB, $iv);
   return trim($decrypttext);
} 

$filename = "/usr/local/something.txt";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));


$EncryptedData=encryptData($content);
$DecryptedData=decryptData($EncryptedData);

Refer to http://us3.php.net/manual/en/function.mcrypt-encrypt.php for more info. (code snippets from same source)

link|flag
vote up 0 vote down

Here is a basic DES encryption

<?php

$key = 'yourSecretKey';
$plain_text = pkcs5_pad(file_get_contents('yourFile.txt'));

/* Open module, and create IV */
$td = mcrypt_module_open(MCRYPT_DES, '', MCRYPT_MODE_CBC, '');
$key = substr($key, 0, mcrypt_enc_get_key_size($td));
$iv_size = mcrypt_enc_get_iv_size($td);
$iv = mcrypt_create_iv($iv_size, MCRYPT_DEV_URANDOM);

/* Initialize encryption handle */
mcrypt_generic_init($td, $key, $iv);

/* Encrypt data */
$encrypted = mcrypt_generic($td, $plain_text);
mcrypt_generic_deinit($td);
file_put_contents('yourFile.txt.enc', $encrypted);
link|flag
vote up 0 vote down

You are going to want to use the mcrypt php library. It supports a wide variety of encryption schemes. You will probaly need to do a recompile. If you don't already have this exstension, you can install pgp, and shell out to the executable to run.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.