GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 665ea8...1b4181 )
by sebastian
15s
created
src/jwa/cryptographic_algorithms/KeyManagementAlgorithms_Registry.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,14 +43,14 @@  discard block
 block discarded – undo
43 43
         $this->algorithms[JSONWebSignatureAndEncryptionAlgorithms::Dir] = new DirAlgorithm;
44 44
     }
45 45
 
46
-    private function __clone(){}
46
+    private function __clone() {}
47 47
 
48 48
     /**
49 49
      * @return KeyManagementAlgorithms_Registry
50 50
      */
51 51
     public static function getInstance()
52 52
     {
53
-        if(!is_object(self::$instance))
53
+        if (!is_object(self::$instance))
54 54
         {
55 55
             self::$instance = new KeyManagementAlgorithms_Registry();
56 56
         }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     public function get($alg)
74 74
     {
75
-        if(!$this->isSupported($alg)) return null;
75
+        if (!$this->isSupported($alg)) return null;
76 76
         return $this->algorithms[$alg];
77 77
     }
78 78
 }
79 79
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,9 @@
 block discarded – undo
72 72
      */
73 73
     public function get($alg)
74 74
     {
75
-        if(!$this->isSupported($alg)) return null;
75
+        if(!$this->isSupported($alg)) {
76
+         return null;
77
+        }
76 78
         return $this->algorithms[$alg];
77 79
     }
78 80
 }
79 81
\ No newline at end of file
Please login to merge, or discard this patch.
src/jwa/cryptographic_algorithms/DigitalSignatures_MACs_Registry.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,9 @@
 block discarded – undo
81 81
      * @return null|DigitalSignatureAlgorithm|MAC_Algorithm
82 82
      */
83 83
     public function get($alg){
84
-        if(!$this->isSupported($alg)) return null;
84
+        if(!$this->isSupported($alg)) {
85
+         return null;
86
+        }
85 87
         return $this->algorithms[$alg];
86 88
     }
87 89
 }
88 90
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
     private $algorithms = [];
38 38
 
39
-    private function __construct(){
39
+    private function __construct() {
40 40
 
41 41
         $this->algorithms[JSONWebSignatureAndEncryptionAlgorithms::HS256] = new HS256_Algorithm;
42 42
         $this->algorithms[JSONWebSignatureAndEncryptionAlgorithms::HS384] = new HS384_Algorithm;
@@ -52,13 +52,13 @@  discard block
 block discarded – undo
52 52
 
53 53
     }
54 54
 
55
-    private function __clone(){}
55
+    private function __clone() {}
56 56
 
57 57
     /**
58 58
      * @return DigitalSignatures_MACs_Registry
59 59
      */
60
-    public static function getInstance(){
61
-        if(!is_object(self::$instance)){
60
+    public static function getInstance() {
61
+        if (!is_object(self::$instance)) {
62 62
             self::$instance = new DigitalSignatures_MACs_Registry();
63 63
         }
64 64
         return self::$instance;
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @param string $alg
69 69
      * @return bool
70 70
      */
71
-    public function isSupported($alg){
71
+    public function isSupported($alg) {
72 72
         return array_key_exists($alg, $this->algorithms);
73 73
     }
74 74
 
@@ -76,8 +76,8 @@  discard block
 block discarded – undo
76 76
      * @param $alg
77 77
      * @return null|DigitalSignatureAlgorithm|MAC_Algorithm
78 78
      */
79
-    public function get($alg){
80
-        if(!$this->isSupported($alg)) return null;
79
+    public function get($alg) {
80
+        if (!$this->isSupported($alg)) return null;
81 81
         return $this->algorithms[$alg];
82 82
     }
83 83
 }
84 84
\ No newline at end of file
Please login to merge, or discard this patch.
src/jwa/cryptographic_algorithms/macs/HSMAC_Algorithm.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -35,10 +35,10 @@  discard block
 block discarded – undo
35 35
      * @return string
36 36
      * @throws InvalidKeyLengthAlgorithmException
37 37
      */
38
-    public function digest(SharedKey $key, $message){
38
+    public function digest(SharedKey $key, $message) {
39 39
 
40
-        if($this->getMinKeyLen() > $key->getBitLength())
41
-            throw new InvalidKeyLengthAlgorithmException(sprintf('min len %s - cur len %s.',$this->getMinKeyLen(), $key->getBitLength()));
40
+        if ($this->getMinKeyLen() > $key->getBitLength())
41
+            throw new InvalidKeyLengthAlgorithmException(sprintf('min len %s - cur len %s.', $this->getMinKeyLen(), $key->getBitLength()));
42 42
 
43 43
         return hash_hmac($this->getHashingAlgorithm(), $message, $key->getSecret(), true);
44 44
     }
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
      * @throws InvalidKeyLengthAlgorithmException
52 52
      * @throws InvalidKeyTypeAlgorithmException
53 53
      */
54
-    public function verify(Key $key, $message, $digest){
55
-        if(!($key instanceof SharedKey)) throw new InvalidKeyTypeAlgorithmException;
54
+    public function verify(Key $key, $message, $digest) {
55
+        if (!($key instanceof SharedKey)) throw new InvalidKeyTypeAlgorithmException;
56 56
 
57 57
         return $digest === $this->digest($key, $message);
58 58
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,8 +37,9 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function digest(SharedKey $key, $message){
39 39
 
40
-        if($this->getMinKeyLen() > $key->getBitLength())
41
-            throw new InvalidKeyLengthAlgorithmException(sprintf('min len %s - cur len %s.',$this->getMinKeyLen(), $key->getBitLength()));
40
+        if($this->getMinKeyLen() > $key->getBitLength()) {
41
+                    throw new InvalidKeyLengthAlgorithmException(sprintf('min len %s - cur len %s.',$this->getMinKeyLen(), $key->getBitLength()));
42
+        }
42 43
 
43 44
         return hash_hmac($this->getHashingAlgorithm(), $message, $key->getSecret(), true);
44 45
     }
@@ -52,7 +53,9 @@  discard block
 block discarded – undo
52 53
      * @throws InvalidKeyTypeAlgorithmException
53 54
      */
54 55
     public function verify(Key $key, $message, $digest){
55
-        if(!($key instanceof SharedKey)) throw new InvalidKeyTypeAlgorithmException;
56
+        if(!($key instanceof SharedKey)) {
57
+         throw new InvalidKeyTypeAlgorithmException;
58
+        }
56 59
 
57 60
         return $digest === $this->digest($key, $message);
58 61
     }
Please login to merge, or discard this patch.
src/jwa/cryptographic_algorithms/ContentEncryptionAlgorithms_Registry.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,9 @@
 block discarded – undo
68 68
      * @return null|ContentEncryptionAlgorithm
69 69
      */
70 70
     public function get($alg) {
71
-        if (!$this->isSupported($alg)) return null;
71
+        if (!$this->isSupported($alg)) {
72
+         return null;
73
+        }
72 74
         return $this->algorithms[$alg];
73 75
     }
74 76
 }
75 77
\ No newline at end of file
Please login to merge, or discard this patch.
cryptographic_algorithms/key_management/rsa/RSA_KeyManagementAlgorithm.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     extends Abstract_RSA_Algorithm
31 31
     implements EncryptionAlgorithm, KeyEncryption {
32 32
 
33
-    public function __construct(){
33
+    public function __construct() {
34 34
 
35 35
         parent::__construct();
36 36
         //configuration ...
@@ -47,18 +47,18 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function encrypt(Key $key, $message)
49 49
     {
50
-        if(!($key instanceof RSAPublicKey))
50
+        if (!($key instanceof RSAPublicKey))
51 51
             throw new InvalidKeyTypeAlgorithmException('key is not public');
52 52
 
53
-        if($key->getFormat() !== 'PKCS8')
53
+        if ($key->getFormat() !== 'PKCS8')
54 54
             throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format');
55 55
 
56 56
         $res = $this->rsa_impl->loadKey($key->getEncoded());
57 57
 
58
-        if(!$res)
58
+        if (!$res)
59 59
             throw new InvalidKeyTypeAlgorithmException('could not parse the key');
60 60
 
61
-        if($this->rsa_impl->getSize() < $this->getMinKeyLen())
61
+        if ($this->rsa_impl->getSize() < $this->getMinKeyLen())
62 62
             throw new InvalidKeyTypeAlgorithmException('len is invalid');
63 63
 
64 64
         return $this->rsa_impl->encrypt($message);
@@ -70,21 +70,21 @@  discard block
 block discarded – undo
70 70
      * @return string
71 71
      * @throws InvalidKeyTypeAlgorithmException
72 72
      */
73
-    public function decrypt(Key $key, $enc_message){
73
+    public function decrypt(Key $key, $enc_message) {
74 74
 
75
-        if(!($key instanceof RSAPrivateKey))
75
+        if (!($key instanceof RSAPrivateKey))
76 76
             throw new InvalidKeyTypeAlgorithmException('key is not private');
77 77
 
78 78
 
79
-        if($key->getFormat() !== 'PKCS1')
79
+        if ($key->getFormat() !== 'PKCS1')
80 80
             throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format');
81 81
 
82 82
         $res = $this->rsa_impl->loadKey($key->getEncoded());
83 83
 
84
-        if(!$res)
84
+        if (!$res)
85 85
             throw new InvalidKeyTypeAlgorithmException('could not parse the key');
86 86
 
87
-        if($this->rsa_impl->getSize() < $this->getMinKeyLen())
87
+        if ($this->rsa_impl->getSize() < $this->getMinKeyLen())
88 88
             throw new InvalidKeyTypeAlgorithmException('len is invalid');
89 89
 
90 90
         return $this->rsa_impl->decrypt($enc_message);
Please login to merge, or discard this patch.
Braces   +24 added lines, -16 removed lines patch added patch discarded remove patch
@@ -47,19 +47,23 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function encrypt(Key $key, $message)
49 49
     {
50
-        if(!($key instanceof RSAPublicKey))
51
-            throw new InvalidKeyTypeAlgorithmException('key is not public');
50
+        if(!($key instanceof RSAPublicKey)) {
51
+                    throw new InvalidKeyTypeAlgorithmException('key is not public');
52
+        }
52 53
 
53
-        if($key->getFormat() !== 'PKCS8')
54
-            throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format');
54
+        if($key->getFormat() !== 'PKCS8') {
55
+                    throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format');
56
+        }
55 57
 
56 58
         $res = $this->rsa_impl->loadKey($key->getEncoded());
57 59
 
58
-        if(!$res)
59
-            throw new InvalidKeyTypeAlgorithmException('could not parse the key');
60
+        if(!$res) {
61
+                    throw new InvalidKeyTypeAlgorithmException('could not parse the key');
62
+        }
60 63
 
61
-        if($this->rsa_impl->getSize() < $this->getMinKeyLen())
62
-            throw new InvalidKeyTypeAlgorithmException('len is invalid');
64
+        if($this->rsa_impl->getSize() < $this->getMinKeyLen()) {
65
+                    throw new InvalidKeyTypeAlgorithmException('len is invalid');
66
+        }
63 67
 
64 68
         return $this->rsa_impl->encrypt($message);
65 69
     }
@@ -72,20 +76,24 @@  discard block
 block discarded – undo
72 76
      */
73 77
     public function decrypt(Key $key, $enc_message){
74 78
 
75
-        if(!($key instanceof RSAPrivateKey))
76
-            throw new InvalidKeyTypeAlgorithmException('key is not private');
79
+        if(!($key instanceof RSAPrivateKey)) {
80
+                    throw new InvalidKeyTypeAlgorithmException('key is not private');
81
+        }
77 82
 
78 83
 
79
-        if($key->getFormat() !== 'PKCS1')
80
-            throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format');
84
+        if($key->getFormat() !== 'PKCS1') {
85
+                    throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format');
86
+        }
81 87
 
82 88
         $res = $this->rsa_impl->loadKey($key->getEncoded());
83 89
 
84
-        if(!$res)
85
-            throw new InvalidKeyTypeAlgorithmException('could not parse the key');
90
+        if(!$res) {
91
+                    throw new InvalidKeyTypeAlgorithmException('could not parse the key');
92
+        }
86 93
 
87
-        if($this->rsa_impl->getSize() < $this->getMinKeyLen())
88
-            throw new InvalidKeyTypeAlgorithmException('len is invalid');
94
+        if($this->rsa_impl->getSize() < $this->getMinKeyLen()) {
95
+                    throw new InvalidKeyTypeAlgorithmException('len is invalid');
96
+        }
89 97
 
90 98
         return $this->rsa_impl->decrypt($enc_message);
91 99
     }
Please login to merge, or discard this patch.
content_encryption/AES_CBC_HS/AES_CBC_HMAC_SHA2_Algorithm.php 3 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     {
61 61
         $key_len = strlen($key);
62 62
 
63
-        if($this->getMinKeyLen() > ByteUtil::bitLength($key_len))
63
+        if ($this->getMinKeyLen() > ByteUtil::bitLength($key_len))
64 64
             throw new InvalidKeyLengthAlgorithmException;
65 65
 
66 66
         $enc_key_len = $key_len / 2;
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      */
134 134
     public function decrypt($cypher_text, $key, $iv, $aad, $tag)
135 135
     {
136
-        if(!$this->checkAuthenticationTag($cypher_text, $key, $iv, $aad, $tag))
136
+        if (!$this->checkAuthenticationTag($cypher_text, $key, $iv, $aad, $tag))
137 137
             throw new InvalidAuthenticationTagException;
138 138
 
139 139
         $enc_key_len = strlen($key) / 2;
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,8 +60,9 @@  discard block
 block discarded – undo
60 60
     {
61 61
         $key_len = strlen($key);
62 62
 
63
-        if($this->getMinKeyLen() > ByteUtil::bitLength($key_len))
64
-            throw new InvalidKeyLengthAlgorithmException;
63
+        if($this->getMinKeyLen() > ByteUtil::bitLength($key_len)) {
64
+                    throw new InvalidKeyLengthAlgorithmException;
65
+        }
65 66
 
66 67
         $enc_key_len = $key_len / 2;
67 68
         // ENC_KEY = final ENC_KEY_LEN octets of K
@@ -133,8 +134,9 @@  discard block
 block discarded – undo
133 134
      */
134 135
     public function decrypt($cypher_text, $key, $iv, $aad, $tag)
135 136
     {
136
-        if(!$this->checkAuthenticationTag($cypher_text, $key, $iv, $aad, $tag))
137
-            throw new InvalidAuthenticationTagException;
137
+        if(!$this->checkAuthenticationTag($cypher_text, $key, $iv, $aad, $tag)) {
138
+                    throw new InvalidAuthenticationTagException;
139
+        }
138 140
 
139 141
         $enc_key_len = strlen($key) / 2;
140 142
         // ENC_KEY = final ENC_KEY_LEN octets of K
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -90,10 +90,10 @@
 block discarded – undo
90 90
         // MAC_KEY = initial MAC_KEY_LEN octets of K
91 91
         $mac_key = substr($key, 0, $mac_key_len);
92 92
             /**
93
-         * The octet string AL is equal to the number of bits in the
94
-         * Additional Authenticated Data ($aad) expressed as a 64-bit unsigned
95
-         * big-endian integer
96
-         */
93
+             * The octet string AL is equal to the number of bits in the
94
+             * Additional Authenticated Data ($aad) expressed as a 64-bit unsigned
95
+             * big-endian integer
96
+             */
97 97
         $al = ByteUtil::convert2UnsignedLongBE(strlen($aad) * 8);
98 98
         // M = MAC(MAC_KEY, A || IV || E || AL)
99 99
         $secured_input = implode('', array(
Please login to merge, or discard this patch.
src/jwt/JWTClaim.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      * @param string $name
45 45
      * @param JsonValue $value
46 46
      */
47
-    public function __construct($name , $value){
47
+    public function __construct($name, $value) {
48 48
         $this->name  = $name;
49 49
         $this->value = $value;
50 50
     }
@@ -53,21 +53,21 @@  discard block
 block discarded – undo
53 53
     /**
54 54
      * @return string
55 55
      */
56
-    public function getName(){
56
+    public function getName() {
57 57
         return $this->name;
58 58
     }
59 59
 
60 60
     /**
61 61
      * @return JsonValue
62 62
      */
63
-    public function getValue(){
63
+    public function getValue() {
64 64
         return $this->value;
65 65
     }
66 66
 
67 67
     /**
68 68
      * @return array|bool|int|string|\utils\json_types\IJsonObject
69 69
      */
70
-    public function getRawValue(){
70
+    public function getRawValue() {
71 71
         return $this->getValue()->getValue();
72 72
     }
73 73
 
Please login to merge, or discard this patch.
src/jwt/RegisteredJWTClaimNames.php 1 patch
Spacing   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -105,9 +105,8 @@  discard block
 block discarded – undo
105 105
      * @var array
106 106
      * @see jwt/impl/JWTClaimSet.php constructor
107 107
      */
108
-    public static $registered_claim_set = array
109
-    (
110
-        self::Issuer ,
108
+    public static $registered_claim_set = array(
109
+        self::Issuer,
111 110
         self::Subject,
112 111
         self::Audience,
113 112
         self::IssuedAt,
@@ -119,8 +118,7 @@  discard block
 block discarded – undo
119 118
     /**
120 119
      * @var array
121 120
      */
122
-    public static $registered_claim_set_types = array
123
-    (
121
+    public static $registered_claim_set_types = array(
124 122
         self::Issuer         => JsonTypes::StringOrURI,
125 123
         self::Audience       => JsonTypes::StringOrURI,
126 124
         self::Subject        => JsonTypes::StringOrURI,
Please login to merge, or discard this patch.
src/jwt/impl/JWT.php 2 patches
Spacing   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -91,9 +91,8 @@  discard block
 block discarded – undo
91 91
      */
92 92
     public function take()
93 93
     {
94
-        $payload = ($this->header->getType()->getString() === 'JWT') ?  $this->claim_set : '';
95
-        return array
96
-        (
94
+        $payload = ($this->header->getType()->getString() === 'JWT') ? $this->claim_set : '';
95
+        return array(
97 96
             $this->header,
98 97
             $payload,
99 98
             $this->signature
@@ -108,9 +107,9 @@  discard block
 block discarded – undo
108 107
     {
109 108
         $now = new \DateTime();
110 109
         $exp = $this->getClaimSet()->getExpirationTime()->getDateTime();
111
-        if($exp < $now) return true;
110
+        if ($exp < $now) return true;
112 111
         $iat = $this->getClaimSet()->getIssuedAt()->getDateTime();
113
-        if($iat > $now) return true;
112
+        if ($iat > $now) return true;
114 113
         $diff = $now->getTimestamp() - $iat->getTimestamp();
115 114
         return $diff > $tolerance;
116 115
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,9 +108,13 @@
 block discarded – undo
108 108
     {
109 109
         $now = new \DateTime();
110 110
         $exp = $this->getClaimSet()->getExpirationTime()->getDateTime();
111
-        if($exp < $now) return true;
111
+        if($exp < $now) {
112
+         return true;
113
+        }
112 114
         $iat = $this->getClaimSet()->getIssuedAt()->getDateTime();
113
-        if($iat > $now) return true;
115
+        if($iat > $now) {
116
+         return true;
117
+        }
114 118
         $diff = $now->getTimestamp() - $iat->getTimestamp();
115 119
         return $diff > $tolerance;
116 120
     }
Please login to merge, or discard this patch.