xrootd
XrdCryptosslX509Store.hh
Go to the documentation of this file.
1 #ifndef __CRYPTO_SSLX509STORE_H__
2 #define __CRYPTO_SSLX509STORE_H__
3 /******************************************************************************/
4 /* */
5 /* X r d C r y p t o s s l X 5 0 9 S t o r e . h h */
6 /* */
7 /* (c) 2005 G. Ganis , CERN */
8 /* */
9 /* This file is part of the XRootD software suite. */
10 /* */
11 /* XRootD is free software: you can redistribute it and/or modify it under */
12 /* the terms of the GNU Lesser General Public License as published by the */
13 /* Free Software Foundation, either version 3 of the License, or (at your */
14 /* option) any later version. */
15 /* */
16 /* XRootD is distributed in the hope that it will be useful, but WITHOUT */
17 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
18 /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
19 /* License for more details. */
20 /* */
21 /* You should have received a copy of the GNU Lesser General Public License */
22 /* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */
23 /* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */
24 /* */
25 /* The copyright holder's institutional names and contributor's names may not */
26 /* be used to endorse or promote products derived from this software without */
27 /* specific prior written permission of the institution or contributor. */
28 /* */
29 /******************************************************************************/
30 
31 /* ************************************************************************** */
32 /* */
33 /* OpenSSL implementation of XrdCryptoX509Store */
34 /* */
35 /* ************************************************************************** */
36 
37 #include "XrdCrypto/XrdCryptoX509Store.hh"
38 
39 // ---------------------------------------------------------------------------//
40 //
41 // OpenSSL X509 implementation
42 //
43 // ---------------------------------------------------------------------------//
44 class XrdCryptosslX509Store : public XrdCryptoX509Store
45 {
46 public:
48  virtual ~XrdCryptosslX509Store();
49 
50  // Dump information
51  void Dump();
52 
53  // Validity
54  bool IsValid();
55 
56  // Add certificates to store
57  int Add(XrdCryptoX509 *);
58 
59  // Verify the chain stored
60  bool Verify();
61 
62 private:
63  X509_STORE *store; // the store
64  STACK_OF(X509) *chain; // chain of certificates other than CA
65 };
66 
67 #endif