diff options
author | Colin Watson <cjwatson@debian.org> | 2017-10-04 11:23:58 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2017-10-05 23:58:12 +0100 |
commit | 0556ea972b15607b7e13ff31bc05840881c91dd3 (patch) | |
tree | d6b8d48062d0278b5ae0eeff42d0e9afa9f26860 /authfd.h | |
parent | db2122d97eb1ecdd8d99b7bf79b0dd2b5addfd92 (diff) | |
parent | 801a62eedaaf47b20dbf4b426dc3e084bf0c8d49 (diff) |
New upstream release (7.6p1)
Diffstat (limited to 'authfd.h')
-rw-r--r-- | authfd.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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); | |||
27 | void ssh_close_authentication_socket(int sock); | 27 | void ssh_close_authentication_socket(int sock); |
28 | 28 | ||
29 | int ssh_lock_agent(int sock, int lock, const char *password); | 29 | int ssh_lock_agent(int sock, int lock, const char *password); |
30 | int ssh_fetch_identitylist(int sock, int version, | 30 | int ssh_fetch_identitylist(int sock, struct ssh_identitylist **idlp); |
31 | struct ssh_identitylist **idlp); | ||
32 | void ssh_free_identitylist(struct ssh_identitylist *idl); | 31 | void ssh_free_identitylist(struct ssh_identitylist *idl); |
33 | int ssh_add_identity_constrained(int sock, struct sshkey *key, | 32 | int 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 | ||
40 | int ssh_decrypt_challenge(int sock, struct sshkey* key, BIGNUM *challenge, | 39 | int 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]); |
42 | int ssh_agent_sign(int sock, struct sshkey *key, | 41 | int 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 | ||