mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-11 08:10:58 +00:00
Merge branch '1.0' into 2.0
This commit is contained in:
commit
07ffe647f7
@ -190,7 +190,7 @@ class Hash
|
||||
*
|
||||
* @access private
|
||||
*/
|
||||
function _computeKey()
|
||||
function _computeKey($mode)
|
||||
{
|
||||
if ($this->key === false) {
|
||||
$this->computedKey = false;
|
||||
@ -306,7 +306,7 @@ class Hash
|
||||
default:
|
||||
$this->hash = MHASH_SHA1;
|
||||
}
|
||||
$this->_computeKey();
|
||||
$this->_computeKey(CRYPT_HASH_MODE_MHASH);
|
||||
return;
|
||||
case self::MODE_HASH:
|
||||
switch ($hash) {
|
||||
@ -323,7 +323,7 @@ class Hash
|
||||
default:
|
||||
$this->hash = 'sha1';
|
||||
}
|
||||
$this->_computeKey();
|
||||
$this->_computeKey(CRYPT_HASH_MODE_HASH);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -349,7 +349,7 @@ class Hash
|
||||
$this->ipad = str_repeat(chr(0x36), $this->b);
|
||||
$this->opad = str_repeat(chr(0x5C), $this->b);
|
||||
|
||||
$this->_computeKey();
|
||||
$this->_computeKey(CRYPT_HASH_MODE_INTERNAL);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user