Completed
Push — master ( e131b0...5bc29c )
by Michael
01:39
created
src/Aes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         $sum = Hash::hmac($data, $key, static::ALGO);
69 69
 
70 70
         // Then add the other input elements together before performing the final hash
71
-        $sum = $sum . $iv . $mode . self::RIJNDA;
71
+        $sum = $sum.$iv.$mode.self::RIJNDA;
72 72
 
73 73
         // ... then hash other elements with previous hmac and return
74 74
         return Hash::hmac($sum, $key, static::ALGO);
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      */
86 86
     protected static function key(string $pass, string $iv, int $cost, string $mode): string
87 87
     {
88
-        return Hash::ihmac($iv . self::RIJNDA . $mode, $pass, $cost, static::ALGO);
88
+        return Hash::ihmac($iv.self::RIJNDA.$mode, $pass, $cost, static::ALGO);
89 89
     }
90 90
 
91 91
     /**
Please login to merge, or discard this patch.