ssh2_methods_negotiated

(PECL ssh2 >= 0.9.0)

ssh2_methods_negotiatedReturn list of negotiated methods

说明

ssh2_methods_negotiated ( resource $session ) : array

Returns list of negotiated methods.

参数

session

An SSH connection link identifier, obtained from a call to ssh2_connect().

返回值

范例

Example #1 Determining what methods were negotiated

<?php
$connection 
ssh2_connect('shell.example.com'22);
$methods ssh2_methods_negotiated($connection);

echo 
"Encryption keys were negotiated using: {$methods['kex']}\n";
echo 
"Server identified using an {$methods['hostkey']} with ";
echo 
"fingerprint: " ssh2_fingerprint($connection) . "\n";

echo 
"Client to Server packets will use methods:\n";
echo 
"\tCrypt: {$methods['client_to_server']['crypt']}\n";
echo 
"\tComp: {$methods['client_to_server']['comp']}\n";
echo 
"\tMAC: {$methods['client_to_server']['mac']}\n";

echo 
"Server to Client packets will use methods:\n";
echo 
"\tCrypt: {$methods['server_to_client']['crypt']}\n";
echo 
"\tComp: {$methods['server_to_client']['comp']}\n";
echo 
"\tMAC: {$methods['server_to_client']['mac']}\n";

?>

参见

相关文章
php cubrid mysql 兼容性函数 return the type of the column corresponding to the given field offsetphp cubrid mysql 兼容性函数 return an array with the list of all existing cubrid databasesphp enchant 函数 will return a list of values if any of those pre conditions are not metphp hash 函数 return a list of registered hashing algorithms suitable for hash hmacphp mysqlnd qc 函数 returns a list of available storage handlerphp parsekit 函数 compile a php file and return the resulting op arrayphp parsekit 函数 compile a string of php code and return the resulting op arrayphp posix 函数 return the effective group id of the current processphp posix 函数 calculate the group access listphp ssh2 函数 fetch an extended data streamphp ssh2 函数 return list of negotiated methodsphp ssh2 函数 list currently authorized publickeysphp ssh2 函数 return the target of a symbolic linkphp ssh2 函数 stat a file on a remote filesystemphp svn 函数 return true if the path points to a directory false otherwisephp win32service 函数 define or return the exit mode for the current running servicephp sdo das relational 函数 executes an sql query passed as a prepared statement with a list of values to substitute for placeholders and return the results as a normalised data graphphp sdo 函数 get the list index for a changed many valued propertyphp sdo 函数 return the name of the type for a data objectphp sdo 函数 return the namespace uri of the type for a data object
关注编程学问公众号