golden hour
/home/doctorbruno/.trash/google-site-kit.1/third-party/phpseclib/phpseclib/phpseclib/Crypt/DSA
⬆️ Go Up
Upload
File/Folder
Size
Actions
Formats
-
Del
OK
Parameters.php
846 B
Del
OK
PrivateKey.php
5.85 KB
Del
OK
PublicKey.php
3.18 KB
Del
OK
Edit: Parameters.php
<?php /** * DSA 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\DSA; use Google\Site_Kit_Dependencies\phpseclib3\Crypt\DSA; /** * DSA Parameters * * @author Jim Wigginton <terrafrost@php.net> */ final class Parameters extends DSA { /** * 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->p, $this->q, $this->g, $options); } }
Save