diff -r c83ff194977a -r 723bb7acf914 includes/rijndael.php
--- 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;
   }