From faa7df8644db77d577a97b372ade875d143a579d Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Wed, 13 Jan 2010 23:57:54 +0000 Subject: [PATCH] Use any string for key git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1293 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- adminer/include/xxtea.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adminer/include/xxtea.inc.php b/adminer/include/xxtea.inc.php index 9e24c7a8..774c8198 100644 --- a/adminer/include/xxtea.inc.php +++ b/adminer/include/xxtea.inc.php @@ -39,7 +39,7 @@ function xxtea_mx($z, $y, $sum, $k) { /** Cipher * @param string plain-text password -* @param array 4 integers +* @param string * @return string binary cipher */ function encrypt_string($str, $key) { @@ -72,7 +72,7 @@ function encrypt_string($str, $key) { /** Decipher * @param string binary cipher -* @param array 4 integers +* @param string * @return string plain-text password */ function decrypt_string($str, $key) {