Passed
Push — master ( e62ad0...8c869c )
by Roberto
02:36
created
src/Signer.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
 class Signer
34 34
 {
35
-    private static $canonical = [true,false,null,null];
35
+    private static $canonical = [true, false, null, null];
36 36
     
37 37
     /**
38 38
      * Make Signature tag
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $tagname,
53 53
         $mark = 'Id',
54 54
         $algorithm = OPENSSL_ALGO_SHA1,
55
-        $canonical = [true,false,null,null],
55
+        $canonical = [true, false, null, null],
56 56
         $rootname = ''
57 57
     ) {
58 58
         if (!empty($canonical)) {
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         if (empty($content)) {
62 62
             throw SignerException::isNotXml();
63 63
         }
64
-        if (! Validator::isXML($content)) {
64
+        if (!Validator::isXML($content)) {
65 65
             throw SignerException::isNotXml();
66 66
         }
67 67
         $dom = new DOMDocument('1.0', 'UTF-8');
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         if (empty($node) || empty($root)) {
77 77
             throw SignerException::tagNotFound($tagname);
78 78
         }
79
-        if (! self::existsSignature($content)) {
79
+        if (!self::existsSignature($content)) {
80 80
             $dom = self::createSignature(
81 81
                 $certificate,
82 82
                 $dom,
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         DOMElement $node,
110 110
         $mark,
111 111
         $algorithm = OPENSSL_ALGO_SHA1,
112
-        $canonical = [true,false,null,null]
112
+        $canonical = [true, false, null, null]
113 113
     ) {
114 114
         $nsDSIG = 'http://www.w3.org/2000/09/xmldsig#';
115 115
         $nsCannonMethod = 'http://www.w3.org/TR/2001/REC-xml-c14n-20010315';
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $nsSignatureMethod = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256';
122 122
             $nsDigestMethod = 'http://www.w3.org/2001/04/xmlenc#sha256';
123 123
         }
124
-        $nsTransformMethod1 ='http://www.w3.org/2000/09/xmldsig#enveloped-signature';
124
+        $nsTransformMethod1 = 'http://www.w3.org/2000/09/xmldsig#enveloped-signature';
125 125
         $nsTransformMethod2 = 'http://www.w3.org/TR/2001/REC-xml-c14n-20010315';
126 126
         $idSigned = trim($node->getAttribute($mark));
127 127
         $digestValue = self::makeDigest($node, $digestAlgorithm, $canonical);
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      */
177 177
     public static function removeSignature($content)
178 178
     {
179
-        if (! self::existsSignature($content)) {
179
+        if (!self::existsSignature($content)) {
180 180
             return $content;
181 181
         }
182 182
         $dom = new \DOMDocument('1.0', 'utf-8');
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     public static function isSigned(
204 204
         $content,
205 205
         $tagname = '',
206
-        $canonical = [true,false,null,null]
206
+        $canonical = [true, false, null, null]
207 207
     ) {
208 208
         if (self::existsSignature($content)) {
209 209
             if (self::digestCheck($content, $tagname, $canonical)) {
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
      */
223 223
     public static function existsSignature($content)
224 224
     {
225
-        if (! Validator::isXML($content)) {
225
+        if (!Validator::isXML($content)) {
226 226
             throw SignerException::isNotXml();
227 227
         }
228 228
         $dom = new \DOMDocument('1.0', 'utf-8');
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
      */
245 245
     public static function signatureCheck(
246 246
         $xml,
247
-        $canonical = [true,false,null,null]
247
+        $canonical = [true, false, null, null]
248 248
     ) {
249 249
         $dom = new \DOMDocument('1.0', 'utf-8');
250 250
         $dom->formatOutput = false;
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
         $decodedSignature = base64_decode(
271 271
             str_replace(array("\r", "\n"), '', $signatureValue)
272 272
         );
273
-        if (! $publicKey->verify($signInfoNode, $decodedSignature, $algorithm)) {
273
+        if (!$publicKey->verify($signInfoNode, $decodedSignature, $algorithm)) {
274 274
             throw SignerException::signatureComparisonFailed();
275 275
         }
276 276
         return true;
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
     public static function digestCheck(
288 288
         $xml,
289 289
         $tagname = '',
290
-        $canonical = [true,false,null,null]
290
+        $canonical = [true, false, null, null]
291 291
     ) {
292 292
         $dom = new \DOMDocument('1.0', 'utf-8');
293 293
         $dom->formatOutput = false;
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
     private static function makeDigest(
345 345
         DOMNode $node,
346 346
         $algorithm,
347
-        $canonical = [true,false,null,null]
347
+        $canonical = [true, false, null, null]
348 348
     ) {
349 349
         //calcular o hash dos dados
350 350
         $c14n = self::canonize($node, $canonical);
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
      */
361 361
     private static function canonize(
362 362
         DOMNode $node,
363
-        $canonical = [true,false,null,null]
363
+        $canonical = [true, false, null, null]
364 364
     ) {
365 365
         return $node->C14N(
366 366
             $canonical[0],
Please login to merge, or discard this patch.