Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class Encryptor extends BaseEncryptor |
||
24 | { |
||
25 | /** |
||
26 | * Decrypt data. |
||
27 | * |
||
28 | * @param string $sessionKey |
||
29 | * @param string $iv |
||
30 | * @param string $encrypted |
||
31 | * |
||
32 | * @return array |
||
33 | * |
||
34 | * @throws \EasyWeChat\Kernel\Exceptions\DecryptException |
||
35 | */ |
||
36 | 2 | public function decryptData(string $sessionKey, string $iv, string $encrypted): array |
|
53 |