libssh2_hostkey_hash - return a hash of the remote host's key
#include <libssh2.h> const char * libssh2_hostkey_hash(LIBSSH2_SESSION *session, int hash_type);
libssh2 manual libssh2_hostkey_hash(3ssh2)
NAME
libssh2_hostkey_hash - return a hash of the remote host's key
SYNOPSIS
#include <libssh2.h>
const char * libssh2_hostkey_hash(LIBSSH2_SESSION *session, int
hash_type);
DESCRIPTION
session - Session instance as returned by libssh2_session_init_ex(3)
hash_type - One of: LIBSSH2_HOSTKEY_HASH_MD5, LIBSSH2_HOSTKEY_HASH_SHA1
or LIBSSH2_HOSTKEY_HASH_SHA256.
Returns the computed digest of the remote system's hostkey. The length
of the returned string is hash_type specific (e.g. 16 bytes for MD5, 20
bytes for SHA1, 32 bytes for SHA256).
RETURN VALUE
Computed hostkey hash value, or NULL if the information is not avail-
able (either the session has not yet been started up, or the requested
hash algorithm was not available). The hash consists of raw binary
bytes, not hex digits, so it is not directly printable.
ATTRIBUTES
See attributes(7) for descriptions of the following attributes:
+---------------+------------------+
|ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+---------------+------------------+
|Availability | library/libssh2 |
+---------------+------------------+
|Stability | Uncommitted |
+---------------+------------------+
SEE ALSO
libssh2_session_init_ex(3)
NOTES
Source code for open source software components in Oracle Solaris can
be found at https://www.oracle.com/downloads/opensource/solaris-source-
code-downloads.html.
This software was built from source available at
https://github.com/oracle/solaris-userland. The original community
source was downloaded from https://www.libssh2.org/download/lib-
ssh2-1.10.0.tar.gz.
Further information about this software can be found on the open source
community website at https://www.libssh2.org/.
libssh2 0.15 1 Jun 2007
libssh2_hostkey_hash(3ssh2)