summaryrefslogtreecommitdiff
path: root/authfd.h
diff options
context:
space:
mode:
Diffstat (limited to 'authfd.h')
-rw-r--r--authfd.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/authfd.h b/authfd.h
index 4b417e3f4..43abf85da 100644
--- a/authfd.h
+++ b/authfd.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfd.h,v 1.39 2015/12/04 16:41:28 markus Exp $ */ 1/* $OpenBSD: authfd.h,v 1.41 2017/06/28 01:09:22 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -27,8 +27,7 @@ int ssh_get_authentication_socket(int *fdp);
27void ssh_close_authentication_socket(int sock); 27void ssh_close_authentication_socket(int sock);
28 28
29int ssh_lock_agent(int sock, int lock, const char *password); 29int ssh_lock_agent(int sock, int lock, const char *password);
30int ssh_fetch_identitylist(int sock, int version, 30int ssh_fetch_identitylist(int sock, struct ssh_identitylist **idlp);
31 struct ssh_identitylist **idlp);
32void ssh_free_identitylist(struct ssh_identitylist *idl); 31void ssh_free_identitylist(struct ssh_identitylist *idl);
33int ssh_add_identity_constrained(int sock, struct sshkey *key, 32int ssh_add_identity_constrained(int sock, struct sshkey *key,
34 const char *comment, u_int life, u_int confirm); 33 const char *comment, u_int life, u_int confirm);
@@ -39,7 +38,7 @@ int ssh_remove_all_identities(int sock, int version);
39 38
40int ssh_decrypt_challenge(int sock, struct sshkey* key, BIGNUM *challenge, 39int ssh_decrypt_challenge(int sock, struct sshkey* key, BIGNUM *challenge,
41 u_char session_id[16], u_char response[16]); 40 u_char session_id[16], u_char response[16]);
42int ssh_agent_sign(int sock, struct sshkey *key, 41int ssh_agent_sign(int sock, const struct sshkey *key,
43 u_char **sigp, size_t *lenp, 42 u_char **sigp, size_t *lenp,
44 const u_char *data, size_t datalen, const char *alg, u_int compat); 43 const u_char *data, size_t datalen, const char *alg, u_int compat);
45 44