summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/bufbn.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssh/bufbn.c')
-rw-r--r--crypto/openssh/bufbn.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/openssh/bufbn.c b/crypto/openssh/bufbn.c
index b7f7cb1..33ae7f7 100644
--- a/crypto/openssh/bufbn.c
+++ b/crypto/openssh/bufbn.c
@@ -20,12 +20,15 @@
#include "includes.h"
+#ifdef WITH_OPENSSL
+
#include <sys/types.h>
#include "buffer.h"
#include "log.h"
#include "ssherr.h"
+#ifdef WITH_SSH1
int
buffer_put_bignum_ret(Buffer *buffer, const BIGNUM *value)
{
@@ -63,6 +66,7 @@ buffer_get_bignum(Buffer *buffer, BIGNUM *value)
if (buffer_get_bignum_ret(buffer, value) == -1)
fatal("%s: buffer error", __func__);
}
+#endif /* WITH_SSH1 */
int
buffer_put_bignum2_ret(Buffer *buffer, const BIGNUM *value)
@@ -101,3 +105,5 @@ buffer_get_bignum2(Buffer *buffer, BIGNUM *value)
if (buffer_get_bignum2_ret(buffer, value) == -1)
fatal("%s: buffer error", __func__);
}
+
+#endif /* WITH_OPENSSL */
OpenPOWER on IntegriCloud