Skip to content

Commit

Permalink
Oops, Silly me..
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/Crypt_Rc4/trunk@163467 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Dave Mertens committed Jul 16, 2004
1 parent 5a1f2f8 commit ab726d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Rc4.php
Expand Up @@ -54,28 +54,28 @@
* @var array
* @access private
*/
private var $s= array();
private $s= array();

/**
* First Part of encryption matrix
* @var array
* @access private
*/
private var $i= 0;
private $i= 0;

/**
* Second part of encryption matrix
* @var array
* @access private
*/
private var $j= 0;
private $j= 0;

/**
* Used provided key for encryption.
* @var string
* @access private
*/
private var $_key;
private $_key;

/**
* Constructor for encryption class
Expand Down

0 comments on commit ab726d5

Please sign in to comment.