includes/rijndael.php
changeset 40 723bb7acf914
parent 1 fe660c52c48f
child 42 45ebe475ff75
--- a/includes/rijndael.php	Mon Jul 02 20:33:57 2007 -0400
+++ b/includes/rijndael.php	Tue Jul 03 14:07:35 2007 -0400
@@ -913,7 +913,9 @@
   {
     $ret = $this->hexToByteArray($this->strtohex($text));
     if(count($ret) != strlen($text))
-      die('problem seems to be the hex conversion');
+    {
+      die('Could not convert string "' . $text . '" to hex byte array for encryption');
+    }
     return $ret;
   }