aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJan-Niklas Burfeind <libssh@aiyionpri.me>2018-08-09 11:00:00 +0200
committerAndreas Schneider <asn@cryptomilk.org>2018-10-09 10:16:14 +0200
commitf3f140e65f0e58fc37b04dbe4173d6ecda0127ac (patch)
treebd7c83071602fca8bd2e50928c493370353ab230 /include
parentc977a970933ad6a563cf6599497f6679dd04779d (diff)
downloadlibssh-f3f140e65f0e58fc37b04dbe4173d6ecda0127ac.tar.gz
libssh-f3f140e65f0e58fc37b04dbe4173d6ecda0127ac.tar.xz
libssh-f3f140e65f0e58fc37b04dbe4173d6ecda0127ac.zip
dh: Add SSH_PUBLICKEY_HASH_SHA256 to ssh_get_publickey_hash()
Signed-off-by: Jan-Niklas Burfeind <libssh@aiyionpri.me> Reviewed-by: Andreas Schneider <asn@cryptomilk.org> (cherry picked from commit 1499b38aef17beac8b438522535daf428600d529)
Diffstat (limited to 'include')
-rw-r--r--include/libssh/libssh.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 37214898..320dc032 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -444,7 +444,8 @@ LIBSSH_API int ssh_get_publickey(ssh_session session, ssh_key *key);
enum ssh_publickey_hash_type {
SSH_PUBLICKEY_HASH_SHA1,
- SSH_PUBLICKEY_HASH_MD5
+ SSH_PUBLICKEY_HASH_MD5,
+ SSH_PUBLICKEY_HASH_SHA256
};
LIBSSH_API int ssh_get_publickey_hash(const ssh_key key,
enum ssh_publickey_hash_type type,