From 149be78ee046057391311fd5c5778bfaa22a7b4f Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 23 Aug 2011 08:19:53 +0200 Subject: pki: We need only one signature verify blob function. This fixes the build without server. --- include/libssh/pki.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/libssh/pki.h b/include/libssh/pki.h index ef2ea090..0d898217 100644 --- a/include/libssh/pki.h +++ b/include/libssh/pki.h @@ -69,12 +69,10 @@ int ssh_pki_import_signature_blob(const ssh_string sig_blob, const ssh_key pubkey, ssh_signature *psig); int ssh_pki_signature_verify_blob(ssh_session session, - ssh_string sig_blob); -int ssh_srv_pki_signature_verify_blob(ssh_session session, - ssh_string sig_blob, - const ssh_key key, - unsigned char *digest, - size_t dlen); + ssh_string sig_blob, + const ssh_key key, + unsigned char *digest, + size_t dlen); /* SSH Public Key Functions */ ssh_string ssh_pki_export_pubkey_blob(const ssh_key key); -- cgit