backup
/
src
/
JetBackup
/
3rdparty
/
phpseclib3
/
Math
/
BigInteger
/
Engines
/
PHP
Last commit date
Reductions
9 months ago
.htaccess
9 months ago
Base.php
9 months ago
DefaultEngine.php
9 months ago
Montgomery.php
9 months ago
OpenSSL.php
9 months ago
index.html
9 months ago
web.config
9 months ago
OpenSSL.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * OpenSSL Modular Exponentiation Engine |
| 5 | * |
| 6 | * PHP version 5 and 7 |
| 7 | * |
| 8 | * @author Jim Wigginton <terrafrost@php.net> |
| 9 | * @copyright 2017 Jim Wigginton |
| 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License |
| 11 | * @link http://pear.php.net/package/Math_BigInteger |
| 12 | */ |
| 13 | |
| 14 | declare(strict_types=1); |
| 15 | |
| 16 | namespace phpseclib3\Math\BigInteger\Engines\PHP; |
| 17 | |
| 18 | use phpseclib3\Math\BigInteger\Engines\OpenSSL as Progenitor; |
| 19 | |
| 20 | /** |
| 21 | * OpenSSL Modular Exponentiation Engine |
| 22 | * |
| 23 | * @author Jim Wigginton <terrafrost@php.net> |
| 24 | */ |
| 25 | abstract class OpenSSL extends Progenitor |
| 26 | { |
| 27 | } |
| 28 |