phpseclib\Net\SSH1::getHostKeyPublicExponent PHP Метод

getHostKeyPublicExponent() публичный Метод

Returns, by default, the base-10 representation. If $raw_output is set to true, returns, instead, the raw bytes. This behavior is similar to PHP's md5() function.
public getHostKeyPublicExponent ( boolean $raw_output = false ) : string
$raw_output boolean
Результат string
    function getHostKeyPublicExponent($raw_output = false)
    {
        return $raw_output ? $this->host_key_public_exponent->toBytes() : $this->host_key_public_exponent->toString();
    }