I'm trying to encode and decode some random strings I've made using MCRYPT but they don't decode properly.
Here's the function I'm using to encode the strings:
function m_encrypt($key, $text, $iv) {
return mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $text, MCRYPT_MODE_CBC, $iv);
}
As you can see it takes a pre-defined "key" I've written, the text to encode and the iv which is created in a seperate file. It then encrypts the data and returns it.
Here's the function which inserts the string into the database:
$sth = $dbh->prepare('INSERT INTO randomStrings(random_string, iv) VALUES (:random_string, :iv)');
$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);
$rows = 50;
for($i = 0; $i < $rows; $i++) {
$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
$randString = get_random_string($chars, 20);
$randString = m_encrypt($key, $randString, $iv);
$sth->bindParam(':random_string', $randString);
$sth->bindParam(':iv', $iv);
$sth->execute();
}
I merely insert the string and iv into the database.
Next I try to read the encoded string using this:
function m_decrypt($key, $text, $iv) {
return mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, $text, MCRYPT_MODE_CBC, $iv);
}
Similar to the encode function, but the opposite.
Finally, the file which tries to decrypt the string looks like this:
$sth = $dbh->prepare('SELECT * FROM randomStrings');
$sth->execute();
while($result = $sth->fetch(PDO::FETCH_ASSOC)) {
echo m_decrypt($key, $result['random_string'], $result['iv']);
echo '<br/>';
}
The result is always some arbitrary set of characters like
í,eHGxC•z»@”“§``
I know this cannot be right as I have limited the characters to be used in the random string generation to simple a-z and 0-9 so this can't possibly be the correct decoding, any help is appreciated.
$keyin the decrypt script? – Gordon Freeman Jan 27 at 17:12