gcc const fix, converted linefeeds
[shibboleth/cpp-xmltooling.git] / xmltooling / security / OpenSSLCryptoX509CRL.h
1 /*
2  * Copyright 2006 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * OpenSSLCryptoX509CRL.h
19  * 
20  * OpenSSL-based class for handling X.509 CRLs
21  */
22
23 #if !defined(__xmltooling_opensslx509crl_h__) && !defined(XMLTOOLING_NO_XMLSEC)
24 #define __xmltooling_opensslx509crl_h__
25
26 #include <xmltooling/security/XSECCryptoX509CRL.h>
27
28 #include <openssl/bio.h>
29 #include <openssl/x509v3.h>
30 #include <xsec/utils/XSECSafeBuffer.hpp>
31
32 namespace xmltooling {
33     class XMLTOOL_API OpenSSLCryptoX509CRL : public XSECCryptoX509CRL {
34     public:
35         OpenSSLCryptoX509CRL() : mp_X509CRL(NULL), m_DERX509CRL("") {}
36         virtual ~OpenSSLCryptoX509CRL();
37
38         virtual const XMLCh* getProviderName() const {
39             return DSIGConstants::s_unicodeStrPROVOpenSSL;
40         }
41         virtual void loadX509CRLBase64Bin(const char* buf, unsigned int len);
42     
43         virtual safeBuffer& getDEREncodingSB(void) {
44             return m_DERX509CRL;
45         }
46     
47         OpenSSLCryptoX509CRL(X509_CRL* x);
48         X509_CRL* getOpenSSLX509CRL(void) {
49             return mp_X509CRL;
50         }
51
52         XSECCryptoX509CRL* clone() const {
53             OpenSSLCryptoX509CRL* copy = new OpenSSLCryptoX509CRL();
54             copy->mp_X509CRL = X509_CRL_dup(mp_X509CRL);
55             copy->m_DERX509CRL = m_DERX509CRL;
56             return copy;
57         }
58     
59     private:
60         X509_CRL* mp_X509CRL;
61         safeBuffer m_DERX509CRL;
62     };
63 };
64
65 #endif /* __xmltooling_opensslx509crl_h__ */
66