From 6c1b508efd5c8d5081d26d2c085f201ebeafaa0b Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 15 Aug 2011 20:42:26 +0200 Subject: pki: Rename ssh_pki_import_pubkey_string and make it public. It should be named ssh_pki_import_pubkey_blob(). --- include/libssh/libssh.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/libssh/libssh.h') diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index d0c02bf3..df06e840 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -437,6 +437,9 @@ LIBSSH_API int ssh_pki_import_pubkey_base64(ssh_session session, const char *b64_key, enum ssh_keytypes_e type, ssh_key *pkey); +LIBSSH_API int ssh_pki_import_pubkey_blob(ssh_session session, + const ssh_string key_blob, + ssh_key *pkey); LIBSSH_API int ssh_userauth_pki_pubkey(ssh_session session, const char *username, ssh_string publickey, ssh_key privatekey); -- cgit