From 847082ac743ab3444bed9c1061ff8c7d3b9c7c1d Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Fri, 17 Jul 2015 00:38:17 +0200 Subject: [PATCH] Fix indentation phpcbf did not fix. --- phpseclib/Crypt/Hash.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/phpseclib/Crypt/Hash.php b/phpseclib/Crypt/Hash.php index b8e23215..ce440635 100644 --- a/phpseclib/Crypt/Hash.php +++ b/phpseclib/Crypt/Hash.php @@ -276,26 +276,26 @@ class Crypt_Hash switch ($hash) { case 'md2': - $this->b = 16; - $this->hash = array($this, '_md2'); + $this->b = 16; + $this->hash = array($this, '_md2'); break; case 'md5': - $this->b = 64; - $this->hash = array($this, '_md5'); + $this->b = 64; + $this->hash = array($this, '_md5'); break; case 'sha256': - $this->b = 64; - $this->hash = array($this, '_sha256'); + $this->b = 64; + $this->hash = array($this, '_sha256'); break; case 'sha384': case 'sha512': - $this->b = 128; - $this->hash = array($this, '_sha512'); + $this->b = 128; + $this->hash = array($this, '_sha512'); break; case 'sha1': default: - $this->b = 64; - $this->hash = array($this, '_sha1'); + $this->b = 64; + $this->hash = array($this, '_sha1'); } $this->ipad = str_repeat(chr(0x36), $this->b);