Convert from NULL macro to nullptr.
[shibboleth/cpp-xmltooling.git] / xmltooling / security / OpenSSLCryptoX509CRL.h
index a41c365..8a93dd3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2001-2007 The Apache Software Foundation.
+ * Copyright 2001-2010 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -15,9 +15,9 @@
  */
 
 /**
- * OpenSSLCryptoX509CRL.h
+ * @file xmltooling/security/OpenSSLCryptoX509CRL.h
  * 
- * OpenSSL-based class for handling X.509 CRLs
+ * OpenSSL-based class for handling X.509 CRLs.
  */
 
 #if !defined(__xmltooling_opensslx509crl_h__) && !defined(XMLTOOLING_NO_XMLSEC)
@@ -25,7 +25,6 @@
 
 #include <xmltooling/security/XSECCryptoX509CRL.h>
 
-#include <openssl/bio.h>
 #include <openssl/x509v3.h>
 #include <xsec/utils/XSECSafeBuffer.hpp>
 
@@ -35,17 +34,13 @@ namespace xmltooling {
      */
     class XMLTOOL_API OpenSSLCryptoX509CRL : public XSECCryptoX509CRL {
     public:
-       OpenSSLCryptoX509CRL() : mp_X509CRL(NULL), m_DERX509CRL("") {}
+        /** Default constructor. */
+       OpenSSLCryptoX509CRL();
        virtual ~OpenSSLCryptoX509CRL();
 
-       virtual const XMLCh* getProviderName() const {
-            return DSIGConstants::s_unicodeStrPROVOpenSSL;
-        }
-       virtual void loadX509CRLBase64Bin(const char* buf, unsigned int len);
-    
-       virtual safeBuffer& getDEREncodingSB(void) {
-            return m_DERX509CRL;
-        }
+       const XMLCh* getProviderName() const;
+       void loadX509CRLBase64Bin(const char* buf, unsigned int len);
+       safeBuffer& getDEREncodingSB();
     
         /**
          * Constructor
@@ -57,18 +52,11 @@ namespace xmltooling {
         /**
          * Returns native CRL object.
          * 
-         * @return  native CRL object, or NULL
+         * @return  native CRL object, or nullptr
          */
-       X509_CRL* getOpenSSLX509CRL() {
-            return mp_X509CRL;
-        }
+       X509_CRL* getOpenSSLX509CRL();
 
-        XSECCryptoX509CRL* clone() const {
-            OpenSSLCryptoX509CRL* copy = new OpenSSLCryptoX509CRL();
-            copy->mp_X509CRL = X509_CRL_dup(mp_X509CRL);
-            copy->m_DERX509CRL = m_DERX509CRL;
-            return copy;
-        }
+        XSECCryptoX509CRL* clone() const;
     
     private:
        X509_CRL* mp_X509CRL;