mirror of
https://github.com/danog/tgseclib.git
synced 2024-12-15 02:17:05 +01:00
40 lines
787 B
PHP
40 lines
787 B
PHP
<?php
|
|
|
|
/**
|
|
* DSA Parameters
|
|
*
|
|
* @category Crypt
|
|
* @package DSA
|
|
* @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 phpseclib\Crypt\DSA;
|
|
|
|
use phpseclib\Crypt\DSA;
|
|
|
|
/**
|
|
* DSA Parameters
|
|
*
|
|
* @package DSA
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
* @access public
|
|
*/
|
|
class Parameters extends DSA
|
|
{
|
|
/**
|
|
* Returns the public key
|
|
*
|
|
* @param string $type
|
|
* @return string
|
|
*/
|
|
public function toString($type = 'PKCS1')
|
|
{
|
|
$type = self::validatePlugin('Keys', 'PKCS1', 'saveParameters');
|
|
|
|
return $type::saveParameters($this->p, $this->q, $this->g);
|
|
}
|
|
}
|