blob: 308f2a8ad29c4d88b5eb7f943784152ea55ef261 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/* crl.h
2 *
3 * Copyright (C) 2006-2021 wolfSSL Inc.
4 *
5 * This file is part of wolfSSL.
6 *
7 * wolfSSL is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * wolfSSL is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
20 */
21
22
23
24#ifndef WOLFSSL_CRL_H
25#define WOLFSSL_CRL_H
26
27
28#ifdef HAVE_CRL
29
30#include <wolfssl/ssl.h>
31#include <wolfssl/wolfcrypt/asn.h>
32
33#ifdef __cplusplus
34 extern "C" {
35#endif
36
37WOLFSSL_LOCAL int InitCRL(WOLFSSL_CRL*, WOLFSSL_CERT_MANAGER*);
38WOLFSSL_LOCAL void FreeCRL(WOLFSSL_CRL*, int dynamic);
39
40WOLFSSL_LOCAL int LoadCRL(WOLFSSL_CRL* crl, const char* path, int type, int mon);
41WOLFSSL_LOCAL int BufferLoadCRL(WOLFSSL_CRL*, const byte*, long, int, int);
42WOLFSSL_LOCAL int CheckCertCRL(WOLFSSL_CRL*, DecodedCert*);
43
44
45#ifdef __cplusplus
46 } /* extern "C" */
47#endif
48
49#endif /* HAVE_CRL */
50#endif /* WOLFSSL_CRL_H */