From bdfe6870f63227a623ec3f91fad3b09c42119e77 Mon Sep 17 00:00:00 2001 From: Axel Eppe Date: Sun, 23 Aug 2015 17:42:21 +0100 Subject: pki: Add certificate loading functions - ssh_pki_import_cert_base64() - ssh_pki_import_cert_file() - ssh_pki_import_cert_blob() Those functions are currently simple wrappers around their pubkey counterpart. - ssh_pki_copy_cert_to_privkey() This function copies the cert-specific data to a private key. Signed-off-by: Axel Eppe Signed-off-by: Andreas Schneider --- include/libssh/pki.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/libssh/pki.h') diff --git a/include/libssh/pki.h b/include/libssh/pki.h index b146d982..905956b3 100644 --- a/include/libssh/pki.h +++ b/include/libssh/pki.h @@ -113,6 +113,10 @@ int ssh_pki_export_pubkey_rsa1(const ssh_key key, char *rsa1, size_t rsa1_len); +int ssh_pki_import_cert_blob(const ssh_string cert_blob, + ssh_key *pkey); + + /* SSH Signing Functions */ ssh_string ssh_pki_do_sign(ssh_session session, ssh_buffer sigbuf, const ssh_key privatekey); -- cgit