Make struct krb5_dh_moduli available when compiling w/o pkinit.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16736 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-02-14 10:08:29 +00:00
parent 362b24c168
commit 9f095696c7

View File

@@ -35,6 +35,14 @@
RCSID("$Id$");
struct krb5_dh_moduli {
char *name;
unsigned long bits;
heim_integer p;
heim_integer g;
heim_integer q;
};
#ifdef PKINIT
#include <openssl/evp.h>
@@ -104,14 +112,6 @@ struct krb5_pk_cert {
X509 *cert;
};
struct krb5_dh_moduli {
char *name;
unsigned long bits;
heim_integer p;
heim_integer g;
heim_integer q;
};
struct krb5_pk_init_ctx_data {
struct krb5_pk_identity *id;
DH *dh;