aboutsummaryrefslogtreecommitdiff
path: root/include/libssh/libssh.h
diff options
context:
space:
mode:
authorJon Simons <jon@jonsimons.org>2014-04-04 15:37:43 -0700
committerAndreas Schneider <asn@cryptomilk.org>2014-04-09 11:01:11 +0200
commit48aca98cd52f439acf2af9faa27d7d6c7a4735c5 (patch)
treeebdc6c5f6f87067c1bef210bb80cec86f8081bfb /include/libssh/libssh.h
parent89e154f78c7ebeb1aa986b57d18c619b75919b97 (diff)
downloadlibssh-48aca98cd52f439acf2af9faa27d7d6c7a4735c5.tar.gz
libssh-48aca98cd52f439acf2af9faa27d7d6c7a4735c5.tar.xz
libssh-48aca98cd52f439acf2af9faa27d7d6c7a4735c5.zip
pki crypto: expose new ssh_pki_key_ecdsa_name API
Enable retrieving the "ecdsa-sha2-nistpNNN" name of ECDSA keys with a new 'ssh_pki_key_ecdsa_name' API. This gives more information than the 'ssh_key_type_to_char' API, which yields "ssh-ecdsa" for ECDSA keys. The motivation is that this info is useful to have in a server context. The torture_pki unit test is updated to include the new API, and a few more passes are added to additionally test 384 and 521-bit keys. Signed-off-by: Jon Simons <jon@jonsimons.org> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'include/libssh/libssh.h')
-rw-r--r--include/libssh/libssh.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index ea63feeb..a166d054 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -557,6 +557,8 @@ LIBSSH_API int ssh_pki_export_pubkey_base64(const ssh_key key,
LIBSSH_API int ssh_pki_export_pubkey_file(const ssh_key key,
const char *filename);
+LIBSSH_API const char *ssh_pki_key_ecdsa_name(const ssh_key key);
+
LIBSSH_API void ssh_print_hexa(const char *descr, const unsigned char *what, size_t len);
LIBSSH_API int ssh_send_ignore (ssh_session session, const char *data);
LIBSSH_API int ssh_send_debug (ssh_session session, const char *message, int always_display);