diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-26 22:29:50 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-26 22:29:50 +0000 |
commit | 38f382cc637a14bf7430291d69d442485bfefe81 (patch) | |
tree | 7e70bec526062bdc9d55ade2a08ceb72586c9746 /sbin/isakmpd | |
parent | 06bc70a0cb7e24be5e523783952070b987bc7587 (diff) |
Merge with EOM 1.8
author: angelos
Complete policy work; tested for the shared-key case. Documentation needed.
author: niklas
Add support for dynamic loading of optional facilities, libcrypto first.
Diffstat (limited to 'sbin/isakmpd')
-rw-r--r-- | sbin/isakmpd/x509.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sbin/isakmpd/x509.h b/sbin/isakmpd/x509.h index 3325b27fcda..1b92e14f012 100644 --- a/sbin/isakmpd/x509.h +++ b/sbin/isakmpd/x509.h @@ -1,5 +1,5 @@ -/* $OpenBSD: x509.h,v 1.4 1999/07/17 21:54:39 niklas Exp $ */ -/* $EOM: x509.h,v 1.6 1999/07/17 20:44:12 niklas Exp $ */ +/* $OpenBSD: x509.h,v 1.5 1999/08/26 22:29:49 niklas Exp $ */ +/* $EOM: x509.h,v 1.8 1999/08/18 00:44:58 angelos Exp $ */ /* * Copyright (c) 1998, 1999 Niels Provos. All rights reserved. @@ -37,6 +37,8 @@ #ifndef _X509_H_ #define _X509_H_ +#include "libcrypto.h" + #define X509v3_RFC_NAME 1 #define X509v3_DNS_NAME 2 #define X509v3_IPV4_ADDR 7 @@ -82,4 +84,5 @@ int x509_cert_subjectaltname (X509 *cert, u_char **, u_int *); int x509_check_subjectaltname (u_char *, u_int, X509 *); X509 *x509_from_asn (u_char *, u_int); +int x509_generate_kn(X509 *); #endif /* _X509_H_ */ |