diff options
author | djm@openbsd.org <djm@openbsd.org> | 2017-06-28 01:09:22 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2017-06-28 11:13:19 +1000 |
commit | a98339edbc1fc21342a390f345179a9c3031bef7 (patch) | |
tree | 574e103d0a458f96213e808118eb75d39bc3387f /authfd.h | |
parent | c9cdef35524bd59007e17d5bd2502dade69e2dfb (diff) |
upstream commit
Allow ssh-keygen to use a key held in ssh-agent as a CA when
signing certificates. bz#2377 ok markus
Upstream-ID: fb42e920b592edcbb5b50465739a867c09329c8f
Diffstat (limited to 'authfd.h')
-rw-r--r-- | authfd.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: authfd.h,v 1.40 2017/05/05 10:42:49 naddy 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> |
@@ -38,7 +38,7 @@ int ssh_remove_all_identities(int sock, int version); | |||
38 | 38 | ||
39 | int ssh_decrypt_challenge(int sock, struct sshkey* key, BIGNUM *challenge, | 39 | int ssh_decrypt_challenge(int sock, struct sshkey* key, BIGNUM *challenge, |
40 | u_char session_id[16], u_char response[16]); | 40 | u_char session_id[16], u_char response[16]); |
41 | int ssh_agent_sign(int sock, struct sshkey *key, | 41 | int ssh_agent_sign(int sock, const struct sshkey *key, |
42 | u_char **sigp, size_t *lenp, | 42 | u_char **sigp, size_t *lenp, |
43 | 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); |
44 | 44 | ||