diff options
Diffstat (limited to 'ssh_api.c')
-rw-r--r-- | ssh_api.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh_api.c,v 1.3 2015/01/30 01:13:33 djm Exp $ */ | 1 | /* $OpenBSD: ssh_api.c,v 1.4 2015/02/16 22:13:32 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2012 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2012 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -41,7 +41,7 @@ int _ssh_verify_host_key(struct sshkey *, struct ssh *); | |||
41 | struct sshkey *_ssh_host_public_key(int, int, struct ssh *); | 41 | struct sshkey *_ssh_host_public_key(int, int, struct ssh *); |
42 | struct sshkey *_ssh_host_private_key(int, int, struct ssh *); | 42 | struct sshkey *_ssh_host_private_key(int, int, struct ssh *); |
43 | int _ssh_host_key_sign(struct sshkey *, struct sshkey *, u_char **, | 43 | int _ssh_host_key_sign(struct sshkey *, struct sshkey *, u_char **, |
44 | size_t *, u_char *, size_t, u_int); | 44 | size_t *, const u_char *, size_t, u_int); |
45 | 45 | ||
46 | /* | 46 | /* |
47 | * stubs for the server side implementation of kex. | 47 | * stubs for the server side implementation of kex. |
@@ -524,7 +524,8 @@ _ssh_order_hostkeyalgs(struct ssh *ssh) | |||
524 | 524 | ||
525 | int | 525 | int |
526 | _ssh_host_key_sign(struct sshkey *privkey, struct sshkey *pubkey, | 526 | _ssh_host_key_sign(struct sshkey *privkey, struct sshkey *pubkey, |
527 | u_char **signature, size_t *slen, u_char *data, size_t dlen, u_int compat) | 527 | u_char **signature, size_t *slen, |
528 | const u_char *data, size_t dlen, u_int compat) | ||
528 | { | 529 | { |
529 | return sshkey_sign(privkey, signature, slen, data, dlen, compat); | 530 | return sshkey_sign(privkey, signature, slen, data, dlen, compat); |
530 | } | 531 | } |