diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-09-06 07:23:55 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-09-06 09:54:21 +0200 |
commit | 670104b923dd97b1c06c0659aef7c3e52af571b2 (patch) | |
tree | 28f189b92f2b56d071535b13e969050c7465fc58 /ssh_api.c | |
parent | upstream: lots of things were relying on libcrypto headers to (diff) | |
download | openssh-670104b923dd97b1c06c0659aef7c3e52af571b2.tar.xz openssh-670104b923dd97b1c06c0659aef7c3e52af571b2.zip |
upstream: fixes for !WITH_OPENSSL compilation; ok dtucker@
OpenBSD-Commit-ID: 7fd68eaa9e0f7482b5d4c7e8d740aed4770a839f
Diffstat (limited to 'ssh_api.c')
-rw-r--r-- | ssh_api.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: ssh_api.c,v 1.16 2019/09/06 04:53:27 djm Exp $ */ +/* $OpenBSD: ssh_api.c,v 1.17 2019/09/06 05:23:55 djm Exp $ */ /* * Copyright (c) 2012 Markus Friedl. All rights reserved. * @@ -55,7 +55,10 @@ int _ssh_host_key_sign(struct ssh *, struct sshkey *, struct sshkey *, int use_privsep = 0; int mm_sshkey_sign(struct sshkey *, u_char **, u_int *, u_char *, u_int, char *, u_int); + +#ifdef WITH_OPENSSL DH *mm_choose_dh(int, int, int); +#endif /* Define these two variables here so that they are part of the library */ u_char *session_id2 = NULL; @@ -68,11 +71,13 @@ mm_sshkey_sign(struct sshkey *key, u_char **sigp, u_int *lenp, return (-1); } +#ifdef WITH_OPENSSL DH * mm_choose_dh(int min, int nbits, int max) { return (NULL); } +#endif /* API */ |