Add pathfinder support for certificate validation
[oweals/opkg-lede.git] / libopkg / opkg_pathfinder.h
1 /* opkg_download.h - the opkg package management system
2
3    Camille Moncelier <moncelier@devlife.org>
4
5    Copyright (C) 2009 Camille Moncelier
6
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16 */
17
18 #ifndef OPKG_PATHFINDER_H
19 #define OPKG_PATHFINDER_H
20
21 #include "config.h"
22
23 #if defined(HAVE_OPENSSL)
24 int pkcs7_pathfinder_verify_signers(PKCS7* p7);
25 #endif
26
27 #if defined(HAVE_SSLCURL)
28 CURLcode curl_ssl_ctx_function(CURL * curl, void * sslctx, void * parm);
29 #endif
30
31
32 #endif