mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-10 21:38:50 +01:00
f07811ee2c
* dirmngr/validate.h: Remove enums VALIDATE_MODE_*. (VALIDATE_FLAG_SYSTRUST, VALIDATE_FLAG_EXTRATRUST) (VALIDATE_FLAG_CRL, VALIDATE_FLAG_RECURSIVE) (VALIDATE_FLAG_OCSP, VALIDATE_FLAG_TLS) (VALIDATE_FLAG_NOCRLCHECK): New constants. * dirmngr/validate.c (validate_cert_chain): Change arg 'mode' to 'flags'. Change code accordingly. Remove NO-CRL in TLS mode kludge. * dirmngr/crlcache.c (crl_parse_insert): Change to use flag values for the validate_cert_chain call. * dirmngr/server.c (cmd_validate): Ditto. Add new option --no-crl. Signed-off-by: Werner Koch <wk@gnupg.org>
67 lines
2.2 KiB
C
67 lines
2.2 KiB
C
/* validate.h - Certificate validation
|
|
* Copyright (C) 2004 g10 Code GmbH
|
|
*
|
|
* This file is part of DirMngr.
|
|
*
|
|
* DirMngr is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* DirMngr is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
*/
|
|
|
|
#ifndef VALIDATE_H
|
|
#define VALIDATE_H
|
|
|
|
|
|
/* Make use of the system provided root certificates. */
|
|
#define VALIDATE_FLAG_SYSTRUST 1
|
|
|
|
/* Make use of extra provided root certificates. */
|
|
#define VALIDATE_FLAG_EXTRATRUST 2
|
|
|
|
/* Standard CRL issuer certificate validation; i.e. CRLs are not
|
|
* considered for CRL issuer certificates. */
|
|
#define VALIDATE_FLAG_CRL 4
|
|
|
|
/* If this flag is set along with VALIDATE_FLAG_CRL a full CRL
|
|
* verification is done. */
|
|
#define VALIDATE_FLAG_RECURSIVE 8
|
|
|
|
/* Validation mode as used for OCSP. */
|
|
#define VALIDATE_FLAG_OCSP 16
|
|
|
|
/* Validation mode as used with TLS. */
|
|
#define VALIDATE_FLAG_TLS 32
|
|
|
|
/* Don't do CRL checks. */
|
|
#define VALIDATE_FLAG_NOCRLCHECK 64
|
|
|
|
|
|
/* Validate the certificate CHAIN up to the trust anchor. Optionally
|
|
return the closest expiration time in R_EXPTIME. */
|
|
gpg_error_t validate_cert_chain (ctrl_t ctrl,
|
|
ksba_cert_t cert, ksba_isotime_t r_exptime,
|
|
unsigned int flags, char **r_trust_anchor);
|
|
|
|
/* Return 0 if the certificate CERT is usable for certification. */
|
|
gpg_error_t check_cert_use_cert (ksba_cert_t cert);
|
|
|
|
/* Return 0 if the certificate CERT is usable for signing OCSP
|
|
responses. */
|
|
gpg_error_t check_cert_use_ocsp (ksba_cert_t cert);
|
|
|
|
/* Return 0 if the certificate CERT is usable for signing CRLs. */
|
|
gpg_error_t check_cert_use_crl (ksba_cert_t cert);
|
|
|
|
|
|
#endif /*VALIDATE_H*/
|