diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-08-23 05:55:10 -0700 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-08-23 05:55:10 -0700 |
commit | e5f74061b4adda0d5dd9d97671ed4465c0f7e9a0 (patch) | |
tree | d75a5c6789a49d4194c70447205565a4095e7771 /inc/phpseclib/Crypt_Hash.php | |
parent | 7522b126516bae336fe9e639cff985c16dad16cc (diff) | |
parent | 0ea51e63908793de4c5d5fa2b4d82c2769fec559 (diff) | |
download | rpg-e5f74061b4adda0d5dd9d97671ed4465c0f7e9a0.tar.gz rpg-e5f74061b4adda0d5dd9d97671ed4465c0f7e9a0.tar.bz2 |
Merge pull request #315 from mperry2/cs-code
Fix CodeSniffer violations for Generic.PHP.LowerCaseConstant.Found
Diffstat (limited to 'inc/phpseclib/Crypt_Hash.php')
-rw-r--r-- | inc/phpseclib/Crypt_Hash.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/inc/phpseclib/Crypt_Hash.php b/inc/phpseclib/Crypt_Hash.php index eaa2da239..840fcd508 100644 --- a/inc/phpseclib/Crypt_Hash.php +++ b/inc/phpseclib/Crypt_Hash.php @@ -13,7 +13,7 @@ * * PHP versions 4 and 5 * - * {@internal The variable names are the same as those in + * {@internal The variable names are the same as those in * {@link http://tools.ietf.org/html/rfc2104#section-2 RFC2104}.}} * * Here's a short example of how to use this library: @@ -35,10 +35,10 @@ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: - * + * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. - * + * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -567,11 +567,11 @@ class Crypt_Hash { if (!isset($k)) { // Initialize variables $init384 = array( // initial values for SHA384 - 'cbbb9d5dc1059ed8', '629a292a367cd507', '9159015a3070dd17', '152fecd8f70e5939', + 'cbbb9d5dc1059ed8', '629a292a367cd507', '9159015a3070dd17', '152fecd8f70e5939', '67332667ffc00b31', '8eb44a8768581511', 'db0c2e0d64f98fa7', '47b5481dbefa4fa4' ); $init512 = array( // initial values for SHA512 - '6a09e667f3bcc908', 'bb67ae8584caa73b', '3c6ef372fe94f82b', 'a54ff53a5f1d36f1', + '6a09e667f3bcc908', 'bb67ae8584caa73b', '3c6ef372fe94f82b', 'a54ff53a5f1d36f1', '510e527fade682d1', '9b05688c2b3e6c1f', '1f83d9abfb41bd6b', '5be0cd19137e2179' ); |