mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-05 21:17:53 +00:00
- added a missing break
git-svn-id: http://phpseclib.svn.sourceforge.net/svnroot/phpseclib/trunk@58 21d32557-59b3-4da0-833f-c5933fad653e
This commit is contained in:
parent
4fd4601ed8
commit
239f48cc6c
@ -49,7 +49,7 @@
|
|||||||
* @author Jim Wigginton <terrafrost@php.net>
|
* @author Jim Wigginton <terrafrost@php.net>
|
||||||
* @copyright MMVII Jim Wigginton
|
* @copyright MMVII Jim Wigginton
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt
|
* @license http://www.gnu.org/licenses/lgpl.txt
|
||||||
* @version $Id: Hash.php,v 1.5 2009-11-23 22:03:08 terrafrost Exp $
|
* @version $Id: Hash.php,v 1.6 2009-11-23 23:37:07 terrafrost Exp $
|
||||||
* @link http://phpseclib.sourceforge.net
|
* @link http://phpseclib.sourceforge.net
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -253,6 +253,7 @@ class Crypt_Hash {
|
|||||||
case 'md2':
|
case 'md2':
|
||||||
$this->b = 16;
|
$this->b = 16;
|
||||||
$this->hash = array($this, '_md2');
|
$this->hash = array($this, '_md2');
|
||||||
|
break;
|
||||||
case 'md5':
|
case 'md5':
|
||||||
case 'md5-96':
|
case 'md5-96':
|
||||||
$this->b = 64;
|
$this->b = 64;
|
||||||
|
Loading…
Reference in New Issue
Block a user