1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-12-03 10:07:47 +01:00

PHPDoc fix

Using property instead of method call fix
This commit is contained in:
Sokolovskyy Roman 2017-07-20 11:08:03 +02:00
parent 654bb1a704
commit 7a25abe60a

View File

@ -33,8 +33,8 @@ abstract class SSH2
* Loads a signature
*
* @access public
* @param array $key
* @return array
* @param array $sig
* @return mixed
*/
public static function load($sig)
{
@ -67,9 +67,9 @@ abstract class SSH2
*/
public static function save(BigInteger $r, BigInteger $s)
{
if ($r->getLength() != 160 || $s->getLength != 160) {
if ($r->getLength() != 160 || $s->getLength() != 160) {
return false;
}
return Strings::pack('ss', $r, $s);
return Strings::packSSH2('ss', $r, $s);
}
}