1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-03 18:18:05 +01:00

Set of PHPDOC fixes

This commit is contained in:
Sokolovskyy Roman 2017-08-03 09:16:37 +02:00
parent 6181b2bfbd
commit ccfb6c92bf
2 changed files with 3 additions and 3 deletions

View File

@ -109,7 +109,7 @@ class DSA extends AsymmetricKey
* @access public * @access public
* @param int $L * @param int $L
* @param int $N * @param int $N
* @return \phpseclib\Crypt\DSA * @return \phpseclib\Crypt\DSA|bool
*/ */
static function createParameters($L = 2048, $N = 224) static function createParameters($L = 2048, $N = 224)
{ {
@ -183,7 +183,7 @@ class DSA extends AsymmetricKey
* - 'publickey': The public key. * - 'publickey': The public key.
* *
* @access public * @access public
* @return \phpseclib\Crypt\DSA * @return array|DSA
*/ */
static function createKey() static function createKey()
{ {

View File

@ -134,7 +134,7 @@ class Hash
* Keys can be of any length. * Keys can be of any length.
* *
* @access public * @access public
* @param string $key * @param string|bool $key
*/ */
public function setKey($key = false) public function setKey($key = false)
{ {