'\" te .TH libssh2_hostkey_hash 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual" .SH NAME libssh2_hostkey_hash - return a hash of the remote host's key .SH SYNOPSIS #include const char * libssh2_hostkey_hash(LIBSSH2_SESSION *session, int hash_type); .SH DESCRIPTION \fIsession\fP - Session instance as returned by .BR libssh2_session_init_ex(3) \fIhash_type\fP - One of: \fBLIBSSH2_HOSTKEY_HASH_MD5\fP or \fBLIBSSH2_HOSTKEY_HASH_SHA1\fP. 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). .SH RETURN VALUE Computed hostkey hash value. or NULL if the session has not yet been started up. (The hash consists of raw binary bytes, not hex digits, so is not directly printable.) .\" Oracle has added the ARC stability level to this manual page .SH ATTRIBUTES See .BR attributes (5) for descriptions of the following attributes: .sp .TS box; cbp-1 | cbp-1 l | l . ATTRIBUTE TYPE ATTRIBUTE VALUE = Availability library/libssh2 = Stability Uncommitted .TE .PP .SH SEE ALSO .BR libssh2_session_init_ex(3) .SH NOTES .\" Oracle has added source availability information to this manual page This software was built from source available at https://java.net/projects/solaris-userland. The original community source was downloaded from http://www.libssh2.org/download/libssh2-1.4.2.tar.gz Further information about this software can be found on the open source community website at http://www.libssh2.org/.