1libssh2_hostkey_hash(3) libssh2 manual libssh2_hostkey_hash(3)
2
3
4
6 libssh2_hostkey_hash - return a hash of the remote host's key
7
9 #include <libssh2.h>
10
11 const char * libssh2_hostkey_hash(LIBSSH2_SESSION *session, int
12 hash_type);
13
14
16 session - Session instance as returned by libssh2_session_init(3)
17
18 hash_type - One of: LIBSSH2_HOSTKEY_HASH_MD5 or LIB‐
19 SSH2_HOSTKEY_HASH_SHA1.
20
21 Returns the computed digest of the remote system's hostkey. The length
22 of the returned string is hash_type specific (e.g. 16 bytes for MD5, 20
23 bytes for SHA1).
24
25
27 Computed hostkey hash value. or NULL if the session has not yet been
28 started up. (The hash consists of raw binary bytes, not hex digits, so
29 is not directly printable.)
30
31
33 libssh2_session_init(3)
34
35
36
37libssh2 0.15 1 Jun 2007 libssh2_hostkey_hash(3)