@@ -92,7 +92,7 @@ |
||
92 | 92 | private function isHMACSignatureValid($accessToken, $ikm, $salt, $request, $hmac = null) |
93 | 93 | { |
94 | 94 | static $selfHMAC = null; |
95 | - static $hkdf = null; |
|
95 | + static $hkdf = null; |
|
96 | 96 | |
97 | 97 | // Null check the HMAC string |
98 | 98 | if (empty($hmac) || $hmac === null) { |
@@ -135,9 +135,9 @@ |
||
135 | 135 | |
136 | 136 | // Calculate the signature string |
137 | 137 | $signatureString = hash('sha256', $body) . "\n" . |
138 | - $request->method . "+" . $request->getUrl() . "\n" . |
|
139 | - $request->getHeaders()->get(self::DATE_HEADER) . "\n" . |
|
140 | - \base64_encode($salt); |
|
138 | + $request->method . "+" . $request->getUrl() . "\n" . |
|
139 | + $request->getHeaders()->get(self::DATE_HEADER) . "\n" . |
|
140 | + \base64_encode($salt); |
|
141 | 141 | |
142 | 142 | Yii::debug([ |
143 | 143 | 'message' => sprintf('Derived Signature String %s', $signatureString), |
@@ -59,7 +59,7 @@ |
||
59 | 59 | $response->data['status'] = $status; |
60 | 60 | |
61 | 61 | if ($response->data['data'] === [] || $response->data['data'] === null) { |
62 | - $response->data['data'] = null; |
|
62 | + $response->data['data'] = null; |
|
63 | 63 | } |
64 | 64 | } |
65 | 65 |
@@ -273,8 +273,8 @@ discard block |
||
273 | 273 | $encodedSecret = Base32::encode($secret); |
274 | 274 | $totp = TOTP::create( |
275 | 275 | $encodedSecret, |
276 | - 30, // 30 second window |
|
277 | - 'sha256', // SHA256 for the hashing algorithm |
|
276 | + 30, // 30 second window |
|
277 | + 'sha256', // SHA256 for the hashing algorithm |
|
278 | 278 | 6 // 6 digits |
279 | 279 | ); |
280 | 280 | $totp->setLabel($this->username); |
@@ -328,8 +328,8 @@ discard block |
||
328 | 328 | { |
329 | 329 | $totp = TOTP::create( |
330 | 330 | $this->otp_secret, |
331 | - 30, // 30 second window |
|
332 | - 'sha256', // SHA256 for the hashing algorithm |
|
331 | + 30, // 30 second window |
|
332 | + 'sha256', // SHA256 for the hashing algorithm |
|
333 | 333 | 6 // 6 digits |
334 | 334 | ); |
335 | 335 |
@@ -72,7 +72,7 @@ |
||
72 | 72 | $token->user_id = $userId; |
73 | 73 | $token->access_token = \str_replace('=', '', Base32::encode(\random_bytes(32))); |
74 | 74 | $token->refresh_token = \str_replace('=', '', Base32::encode(\random_bytes(32))); |
75 | - $token->ikm = \base64_encode(\random_bytes(32)); |
|
75 | + $token->ikm = \base64_encode(\random_bytes(32)); |
|
76 | 76 | $token->secret_sign_kp = \base64_encode(sodium_crypto_sign_secretkey($signKp)); |
77 | 77 | $token->expires_at = \strtotime(static::TOKEN_EXPIRATION_TIME); |
78 | 78 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace yrc\commands; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace yrc\jobs\notifications\email; |
4 | 4 |
@@ -46,10 +46,10 @@ |
||
46 | 46 | return $this->user['class']; |
47 | 47 | } |
48 | 48 | |
49 | - /** |
|
50 | - * Helper method to get the token class |
|
51 | - * @return string |
|
52 | - */ |
|
49 | + /** |
|
50 | + * Helper method to get the token class |
|
51 | + * @return string |
|
52 | + */ |
|
53 | 53 | public function getTokenClass() |
54 | 54 | { |
55 | 55 | return $this->token['class']; |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | parent::init(); |
52 | 52 | $this->client = new Client($this->clientOptions); |
53 | 53 | |
54 | - $this->client->on(Client::EVENT_BEFORE_SEND, function (RequestEvent $e) { |
|
54 | + $this->client->on(Client::EVENT_BEFORE_SEND, function(RequestEvent $e) { |
|
55 | 55 | Yii::info([ |
56 | 56 | 'message' => sprintf('Sending HTTP request [%s] %s', $e->request->getMethod(), $e->request->getUrl()), |
57 | 57 | 'data' => $e->request->getData(), |
@@ -59,10 +59,10 @@ discard block |
||
59 | 59 | ], 'httpclient'); |
60 | 60 | }); |
61 | 61 | |
62 | - $this->client->on(Client::EVENT_AFTER_SEND, function (RequestEvent $e) { |
|
62 | + $this->client->on(Client::EVENT_AFTER_SEND, function(RequestEvent $e) { |
|
63 | 63 | Yii::info([ |
64 | 64 | 'message' => sprintf('Recieved HTTP response HTTP [%s] | [%s] %s', $e->response->getStatusCode(), $e->request->getMethod(), $e->request->getUrl()), |
65 | - 'data' => (function () use ($e) { |
|
65 | + 'data' => (function() use ($e) { |
|
66 | 66 | $content = $e->response->getContent(); |
67 | 67 | if (preg_match('~[^\x20-\x7E\t\r\n]~', $content) > 0) { |
68 | 68 | return '[binary data]'; |