diff options
Diffstat (limited to 'ssh_api.c')
-rw-r--r-- | ssh_api.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh_api.c,v 1.16 2019/09/06 04:53:27 djm Exp $ */ | 1 | /* $OpenBSD: ssh_api.c,v 1.17 2019/09/06 05:23:55 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2012 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2012 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -55,7 +55,10 @@ int _ssh_host_key_sign(struct ssh *, struct sshkey *, struct sshkey *, | |||
55 | int use_privsep = 0; | 55 | int use_privsep = 0; |
56 | int mm_sshkey_sign(struct sshkey *, u_char **, u_int *, | 56 | int mm_sshkey_sign(struct sshkey *, u_char **, u_int *, |
57 | u_char *, u_int, char *, u_int); | 57 | u_char *, u_int, char *, u_int); |
58 | |||
59 | #ifdef WITH_OPENSSL | ||
58 | DH *mm_choose_dh(int, int, int); | 60 | DH *mm_choose_dh(int, int, int); |
61 | #endif | ||
59 | 62 | ||
60 | /* Define these two variables here so that they are part of the library */ | 63 | /* Define these two variables here so that they are part of the library */ |
61 | u_char *session_id2 = NULL; | 64 | u_char *session_id2 = NULL; |
@@ -68,11 +71,13 @@ mm_sshkey_sign(struct sshkey *key, u_char **sigp, u_int *lenp, | |||
68 | return (-1); | 71 | return (-1); |
69 | } | 72 | } |
70 | 73 | ||
74 | #ifdef WITH_OPENSSL | ||
71 | DH * | 75 | DH * |
72 | mm_choose_dh(int min, int nbits, int max) | 76 | mm_choose_dh(int min, int nbits, int max) |
73 | { | 77 | { |
74 | return (NULL); | 78 | return (NULL); |
75 | } | 79 | } |
80 | #endif | ||
76 | 81 | ||
77 | /* API */ | 82 | /* API */ |
78 | 83 | ||