aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormilo <milo@r0ot.me>2011-03-09 13:49:04 +0100
committermilo <milo@r0ot.me>2011-03-17 11:41:50 +0100
commitf0439e3494d12898ed3854b0509968f5718a3dc5 (patch)
tree1dae3c02bab93197cbdb0265a3d6d6e82328c11b /include
parentb05a76870cf95585ca8e29a44644a69af2caf592 (diff)
downloadlibssh-f0439e3494d12898ed3854b0509968f5718a3dc5.tar.gz
libssh-f0439e3494d12898ed3854b0509968f5718a3dc5.tar.xz
libssh-f0439e3494d12898ed3854b0509968f5718a3dc5.zip
[pki] Added conversion functions to migrate seemlessly to ssh_key
Diffstat (limited to 'include')
-rw-r--r--include/libssh/pki.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libssh/pki.h b/include/libssh/pki.h
index 9d023c8..fe83fc5 100644
--- a/include/libssh/pki.h
+++ b/include/libssh/pki.h
@@ -49,5 +49,11 @@ int ssh_key_import_private(ssh_key key, ssh_session session,
ssh_key ssh_pki_publickey_from_privatekey(ssh_key privkey);
+/* temporary functions, to be removed after migration to ssh_key */
+ssh_key ssh_pki_convert_privatekey_to_key(ssh_private_key priv);
+ssh_key ssh_pki_convert_publickey_to_key(ssh_public_key pub);
+ssh_private_key ssh_pki_convert_key_to_privatekey(ssh_key key);
+ssh_public_key ssh_pki_convert_key_to_publickey(ssh_key key);
+
#endif /* PKI_H_ */