#ifndef __CRYPTO_GSIX509CHAIN_H__ #define __CRYPTO_GSIX509CHAIN_H__ /******************************************************************************/ /* */ /* X r d C r y p t o g s i X 5 0 9 C h a i n . h h */ /* */ /* (c) 2014 G. Ganis , CERN */ /* */ /* This file is part of the XRootD software suite. */ /* */ /* XRootD is free software: you can redistribute it and/or modify it under */ /* the terms of the GNU Lesser General Public License as published by the */ /* Free Software Foundation, either version 3 of the License, or (at your */ /* option) any later version. */ /* */ /* XRootD 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 Lesser General Public */ /* License for more details. */ /* */ /* You should have received a copy of the GNU Lesser General Public License */ /* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */ /* COPYING (GPL license). If not, see . */ /* */ /* The copyright holder's institutional names and contributor's names may not */ /* be used to endorse or promote products derived from this software without */ /* specific prior written permission of the institution or contributor. */ /* */ /******************************************************************************/ /* ************************************************************************** */ /* */ /* Chain of X509 certificates following GSI policy(ies). */ /* */ /* ************************************************************************** */ #include "XrdCrypto/XrdCryptoX509Chain.hh" // ---------------------------------------------------------------------------// // // // XrdCryptogsiX509Chain (was XrdCryptosslgsiX509Chain) // // // // Enforce GSI policies on X509 certificate chains // // // // ---------------------------------------------------------------------------// const int kOptsRfc3820 = 0x1; class XrdCryptoFactory; class XrdCryptogsiX509Chain : public XrdCryptoX509Chain { public: XrdCryptogsiX509Chain(XrdCryptoX509 *c = 0, XrdCryptoFactory *f = 0) : XrdCryptoX509Chain(c), cfact(f) { } XrdCryptogsiX509Chain(XrdCryptogsiX509Chain *c, XrdCryptoFactory *f = 0) : XrdCryptoX509Chain(c), cfact(f) { } virtual ~XrdCryptogsiX509Chain() { } // Verify chain bool Verify(EX509ChainErr &e, x509ChainVerifyOpt_t *vopt = 0); private: // Proxy naming rules bool SubjectOK(EX509ChainErr &e, XrdCryptoX509 *xcer); // Crypto factory XrdCryptoFactory *cfact; }; #endif