From 3d88765f1d35898602dd7c21f87024d4eaa9d222 Mon Sep 17 00:00:00 2001 From: Jim Wigginton Date: Tue, 28 Apr 2009 02:56:34 +0000 Subject: [PATCH] - removed debug code git-svn-id: http://phpseclib.svn.sourceforge.net/svnroot/phpseclib/trunk@30 21d32557-59b3-4da0-833f-c5933fad653e --- phpseclib/Crypt/RC4.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpseclib/Crypt/RC4.php b/phpseclib/Crypt/RC4.php index e5a2aa7e..f413c6e5 100644 --- a/phpseclib/Crypt/RC4.php +++ b/phpseclib/Crypt/RC4.php @@ -55,7 +55,7 @@ * @author Jim Wigginton * @copyright MMVII Jim Wigginton * @license http://www.gnu.org/licenses/lgpl.txt - * @version $Id: RC4.php,v 1.4 2009-02-16 22:22:13 terrafrost Exp $ + * @version $Id: RC4.php,v 1.5 2009-04-28 02:56:34 terrafrost Exp $ * @link http://phpseclib.sourceforge.net */ @@ -308,7 +308,7 @@ class Crypt_RC4 { if ( CRYPT_RC4_MODE == CRYPT_RC4_MODE_MCRYPT ) { $keyStream = $mode == CRYPT_RC4_ENCRYPT ? 'encryptStream' : 'decryptStream'; - if ($this->$keyStream === false) {echo "crypt-toe'ing $keyStream"; + if ($this->$keyStream === false) { $this->$keyStream = mcrypt_module_open($this->mode, $this->mcrypt[0], MCRYPT_MODE_STREAM, $this->mcrypt[1]); mcrypt_generic_init($this->$keyStream, $this->key, ''); } else if (!$this->continuousBuffer) {