Move ocsp_responder_t interface as it's not a certificate

This commit is contained in:
Tobias Brunner
2023-11-14 10:35:47 +01:00
parent 14bd0bc743
commit 724e64cac4
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -94,12 +94,12 @@ credentials/certificates/ac.h credentials/certificates/crl.h \
credentials/certificates/pkcs10.h credentials/certificates/ocsp_request.h \ credentials/certificates/pkcs10.h credentials/certificates/ocsp_request.h \
credentials/certificates/ocsp_single_response.h \ credentials/certificates/ocsp_single_response.h \
credentials/certificates/ocsp_response.h \ credentials/certificates/ocsp_response.h \
credentials/certificates/ocsp_responder.h \
credentials/certificates/pgp_certificate.h \ credentials/certificates/pgp_certificate.h \
credentials/certificates/certificate_printer.h \ credentials/certificates/certificate_printer.h \
credentials/containers/container.h credentials/containers/pkcs7.h \ credentials/containers/container.h credentials/containers/pkcs7.h \
credentials/containers/pkcs12.h \ credentials/containers/pkcs12.h \
credentials/credential_manager.h credentials/ocsp_responders.h \ credentials/credential_manager.h credentials/ocsp_responders.h \
credentials/ocsp_responder.h \
credentials/sets/auth_cfg_wrapper.h credentials/sets/ocsp_response_wrapper.h \ credentials/sets/auth_cfg_wrapper.h credentials/sets/ocsp_response_wrapper.h \
credentials/sets/cert_cache.h credentials/sets/mem_cred.h \ credentials/sets/cert_cache.h credentials/sets/mem_cred.h \
credentials/sets/callback_cred.h credentials/auth_cfg.h \ credentials/sets/callback_cred.h credentials/auth_cfg.h \
@@ -16,7 +16,7 @@
/** /**
* @defgroup ocsp_responder ocsp_responder * @defgroup ocsp_responder ocsp_responder
* @{ @ingroup certificates * @{ @ingroup credentials
*/ */
#ifndef OCSP_RESPONDER_H_ #ifndef OCSP_RESPONDER_H_
@@ -24,7 +24,7 @@
typedef struct ocsp_responders_t ocsp_responders_t; typedef struct ocsp_responders_t ocsp_responders_t;
#include <credentials/certificates/ocsp_responder.h> #include <credentials/ocsp_responder.h>
/** /**
* Manages OCSP responders. * Manages OCSP responders.
@@ -24,7 +24,7 @@
typedef struct openxpki_ocsp_responder_t openxpki_ocsp_responder_t; typedef struct openxpki_ocsp_responder_t openxpki_ocsp_responder_t;
#include <credentials/certificates/ocsp_responder.h> #include <credentials/ocsp_responder.h>
/** /**
* OCSP responder implementation using OpenXPKI. * OCSP responder implementation using OpenXPKI.
+1 -1
View File
@@ -22,7 +22,7 @@
#ifndef INDEX_RESPONDER_H_ #ifndef INDEX_RESPONDER_H_
#define INDEX_RESPONDER_H_ #define INDEX_RESPONDER_H_
#include <credentials/certificates/ocsp_responder.h> #include <credentials/ocsp_responder.h>
/** /**
* Create an index.txt-based OCSP responder for the given CA and file. * Create an index.txt-based OCSP responder for the given CA and file.