| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- /*
- * This file is part of the overtrue/wechat.
- *
- * (c) overtrue <i@overtrue.me>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace ByteDance\MiniProgram;
- use App\Account\Exceptions\MiniProgramLoginException;
- use ByteDance\Kernel\Encryptor as BaseEncryptor;
- use ByteDance\Kernel\Exceptions\DecryptException;
- use ByteDance\Kernel\Support\AES;
- /**
- * Class Encryptor.
- *
- * @author mingyoung <mingyoungcheung@gmail.com>
- */
- class Encryptor extends BaseEncryptor
- {
- /**
- * Decrypt data.
- *
- * @param string $sessionKey
- * @param string $iv
- * @param string $encrypted
- *
- * @return array
- */
- public function decryptData(string $sessionKey, string $iv, string $encrypted): array
- {
- $decrypted = AES::decrypt(
- base64_decode($encrypted, false), base64_decode($sessionKey, false), base64_decode($iv, false)
- );
- $decrypted = json_decode($this->pkcs7Unpad($decrypted), true);
- if (!$decrypted) {
- throw new DecryptException('The given payload is invalid.');
- }
- return $decrypted;
- }
- }
|