pluto and scepclient now use the x509 plugin for certificates
This commit is contained in:
+6
-5
@@ -15,6 +15,8 @@
|
||||
#ifndef _CA_H
|
||||
#define _CA_H
|
||||
|
||||
#include <utils/linked_list.h>
|
||||
|
||||
#include "x509.h"
|
||||
#include "whack.h"
|
||||
|
||||
@@ -37,19 +39,18 @@ struct ca_info {
|
||||
time_t installed;
|
||||
chunk_t authName;
|
||||
chunk_t authKeyID;
|
||||
chunk_t authKeySerialNumber;
|
||||
char *ldaphost;
|
||||
char *ldapbase;
|
||||
char *ocspuri;
|
||||
generalName_t *crluri;
|
||||
linked_list_t *crluris;
|
||||
bool strictcrlpolicy;
|
||||
};
|
||||
|
||||
extern bool trusted_ca(chunk_t a, chunk_t b, int *pathlen);
|
||||
extern bool match_requested_ca(generalName_t *requested_ca
|
||||
, chunk_t our_ca, int *our_pathlen);
|
||||
extern x509cert_t* get_authcert(chunk_t subject, chunk_t serial, chunk_t keyid
|
||||
, u_char auth_flags);
|
||||
extern x509cert_t* get_authcert(chunk_t subject, chunk_t keyid,
|
||||
u_char auth_flags);
|
||||
extern void load_authcerts(const char *type, const char *path
|
||||
, u_char auth_flags);
|
||||
extern x509cert_t* add_authcert(x509cert_t *cert, u_char auth_flags);
|
||||
@@ -57,7 +58,7 @@ extern void free_authcerts(void);
|
||||
extern void list_authcerts(const char *caption, u_char auth_flags, bool utc);
|
||||
extern bool trust_authcert_candidate(const x509cert_t *cert
|
||||
, const x509cert_t *alt_chain);
|
||||
extern ca_info_t* get_ca_info(chunk_t name, chunk_t serial, chunk_t keyid);
|
||||
extern ca_info_t* get_ca_info(chunk_t name, chunk_t keyid);
|
||||
extern bool find_ca_info_by_name(const char *name, bool delete);
|
||||
extern void add_ca_info(const whack_message_t *msg);
|
||||
extern void delete_ca_info(const char *name);
|
||||
|
||||
Reference in New Issue
Block a user