diff options
author | Damien Miller <djm@mindrot.org> | 2010-11-20 05:15:49 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-11-20 05:15:49 +0100 |
commit | 4499f4cc20eee7e0f67b35f5a5c6078bf07dcbc0 (patch) | |
tree | f4d827008f691988ecb163d0748648e10f2b0c25 /kexgexc.c | |
parent | - djm@cvs.openbsd.org 2010/11/05 02:46:47 (diff) | |
download | openssh-4499f4cc20eee7e0f67b35f5a5c6078bf07dcbc0.tar.xz openssh-4499f4cc20eee7e0f67b35f5a5c6078bf07dcbc0.zip |
- djm@cvs.openbsd.org 2010/11/10 01:33:07
[kexdhc.c kexdhs.c kexgexc.c kexgexs.c key.c moduli.c]
use only libcrypto APIs that are retained with OPENSSL_NO_DEPRECATED.
these have been around for years by this time. ok markus
Diffstat (limited to 'kexgexc.c')
-rw-r--r-- | kexgexc.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: kexgexc.c,v 1.11 2006/11/06 21:25:28 markus Exp $ */ +/* $OpenBSD: kexgexc.c,v 1.12 2010/11/10 01:33:07 djm Exp $ */ /* * Copyright (c) 2000 Niels Provos. All rights reserved. * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -28,6 +28,8 @@ #include <sys/types.h> +#include <openssl/dh.h> + #include <stdarg.h> #include <stdio.h> #include <string.h> |