BaseCurves
9 months ago
Curves
9 months ago
Formats
9 months ago
.htaccess
9 months ago
Parameters.php
9 months ago
PrivateKey.php
9 months ago
PublicKey.php
9 months ago
index.html
9 months ago
web.config
9 months ago
Parameters.php
37 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * EC Parameters |
| 5 | * |
| 6 | * @author Jim Wigginton <terrafrost@php.net> |
| 7 | * @copyright 2015 Jim Wigginton |
| 8 | * @license http://www.opensource.org/licenses/mit-license.html MIT License |
| 9 | * @link http://phpseclib.sourceforge.net |
| 10 | */ |
| 11 | |
| 12 | declare(strict_types=1); |
| 13 | |
| 14 | namespace phpseclib3\Crypt\EC; |
| 15 | |
| 16 | use phpseclib3\Crypt\EC; |
| 17 | |
| 18 | /** |
| 19 | * EC Parameters |
| 20 | * |
| 21 | * @author Jim Wigginton <terrafrost@php.net> |
| 22 | */ |
| 23 | final class Parameters extends EC |
| 24 | { |
| 25 | /** |
| 26 | * Returns the parameters |
| 27 | * |
| 28 | * @param array $options optional |
| 29 | */ |
| 30 | public function toString(string $type = 'PKCS1', array $options = []): string |
| 31 | { |
| 32 | $type = self::validatePlugin('Keys', 'PKCS1', 'saveParameters'); |
| 33 | |
| 34 | return $type::saveParameters($this->curve, $options); |
| 35 | } |
| 36 | } |
| 37 |