Completed
Push — development ( 2c05ec...a5a40b )
by Nils
07:16
created
install/js/crypt/aes.class.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,9 @@
 block discarded – undo
50 50
      */
51 51
     private static function addRoundKey($state, $w, $rnd, $Nb) {  // xor Round Key into state S [é5.1.4]
52 52
     for ($r = 0; $r < 4; $r++) {
53
-        for ($c = 0; $c < $Nb; $c++) $state[$r][$c] ^= $w[$rnd * 4 + $c][$r];
53
+        for ($c = 0; $c < $Nb; $c++) {
54
+            $state[$r][$c] ^= $w[$rnd * 4 + $c][$r];
55
+        }
54 56
     }
55 57
 
56 58
     return $state;
Please login to merge, or discard this patch.
includes/libraries/Encryption/PBKDF2/PasswordHash.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -105,6 +105,7 @@
 block discarded – undo
105 105
  */
106 106
 /**
107 107
  * @param integer $key_length
108
+ * @param integer $count
108 109
  */
109 110
 function pbkdf2($algorithm, $password, $salt, $count, $key_length, $raw_output = false)
110 111
 {
Please login to merge, or discard this patch.