golden hour
/home/doctorbruno/.trash/google-site-kit/third-party/phpseclib/phpseclib/phpseclib/Crypt/EC
⬆️ Go Up
Upload
File/Folder
Size
Actions
BaseCurves
-
Del
OK
Curves
-
Del
OK
Formats
-
Del
OK
Parameters.php
872 B
Del
OK
PrivateKey.php
11.82 KB
Del
OK
PublicKey.php
6.32 KB
Del
OK
Edit: Parameters.php
<?php /** * EC Parameters * * @author Jim Wigginton <terrafrost@php.net> * @copyright 2015 Jim Wigginton * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link http://phpseclib.sourceforge.net */ namespace Google\Site_Kit_Dependencies\phpseclib3\Crypt\EC; use Google\Site_Kit_Dependencies\phpseclib3\Crypt\EC; /** * EC Parameters * * @author Jim Wigginton <terrafrost@php.net> */ final class Parameters extends \Google\Site_Kit_Dependencies\phpseclib3\Crypt\EC { /** * Returns the parameters * * @param string $type * @param array $options optional * @return string */ public function toString($type = 'PKCS1', array $options = []) { $type = self::validatePlugin('Keys', 'PKCS1', 'saveParameters'); return $type::saveParameters($this->curve, $options); } }
Save