Merge branch '1.0' into 2.0

This commit is contained in:
terrafrost 2016-03-18 12:00:46 -05:00
commit a4cb29ee97

View File

@ -200,7 +200,7 @@ class RC4 extends Base
if ($length < 8) {
$this->key_length = 1;
} elseif ($length > 2048) {
$this->key_length = 248;
$this->key_length = 256;
} else {
$this->key_length = $length >> 3;
}