pxgamer / decrypt-et
用于解密ExtraTorrent基于js页面的加密工具。
v1.1.4
2017-12-06 09:42 UTC
Requires
- php: ^7.1
Requires (Dev)
- phpunit/phpunit: ^6.4
- squizlabs/php_codesniffer: ^3.1
This package is auto-updated.
Last update: 2024-09-11 14:48:25 UTC
README
用于解密ExtraTorrent基于js页面的加密工具。
结构
src/
tests/
vendor/
安装
通过Composer
$ composer require pxgamer/decrypt-et
用法
主要用于创建ET内容的代理。
这是一个快速项目,用于解密ExtraTorrent页面上的加密内容。
use pxgamer\DecryptET\Decrypt; $Decrypt = new Decrypt(); // Fetch the page content from ET (alternatively you can set the HTML manually using $this->__set('full_page', $value) $Decrypt->fetch(); // Populate the JSON class with the values from the JSON in Decrypt->full_page $Decrypt->populate(); // Decrypt the content $Decrypt->decrypt(); // Output the decrypted content echo $Decrypt->__get('decrypted');
变更日志
请参阅CHANGELOG获取有关最近更改的更多信息。
测试
$ composer test
贡献
请参阅CONTRIBUTING和CODE_OF_CONDUCT获取详细信息。
安全性
如果您发现任何与安全相关的问题,请通过电子邮件owzie123@gmail.com联系,而不是使用问题跟踪器。
鸣谢
许可
MIT许可(MIT)。请参阅许可文件获取更多信息。