RC4: key wasn't being truncated correctly

This commit is contained in:
terrafrost 2016-03-18 12:00:41 -05:00
parent da36b5c91e
commit 123eee7150

View File

@ -234,7 +234,7 @@ class Crypt_RC4 extends Crypt_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;
}