OCSP implementation.
[platform/core/security/key-manager.git] / src / manager / service / ocsp.h
index 3ebefbf..d924a22 100644 (file)
@@ -1,21 +1,31 @@
+/*
+ *  Copyright (c) 2014 Samsung Electronics Co.
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License
+ *
+ *
+ * @file        ocsp.h
+ * @author      Dongsun Lee (ds73.lee@samsung.com)
+ * @version     1.0
+ * @brief       OCSP implementation.
+ */
 #pragma once
 
-
 #include <openssl/x509v3.h>
 #include <ckm/ckm-type.h>
 #include <certificate-impl.h>
 #include <dpl/exception.h>
 
-#define OCSP_STATUS_GOOD                               1
-#define OCSP_STATUS_UNKNOWN                            2
-#define OCSP_STATUS_REVOKED                            3
-#define OCSP_STATUS_NET_ERROR                  4
-#define OCSP_STATUS_INVALID_URL                        5
-#define OCSP_STATUS_INVALID_RESPONSE   6
-#define OCSP_STATUS_REMOTE_ERROR               7
-#define OCSP_STATUS_INTERNAL_ERROR             8
-
-
 namespace CKM {
 
 
@@ -24,18 +34,11 @@ public:
        OCSPModule();
        virtual ~OCSPModule();
 
-    class Exception {
-       public:
-           DECLARE_EXCEPTION_TYPE(CKM::Exception, Base)
-               DECLARE_EXCEPTION_TYPE(Base, OCSP_Internal);
-                       DECLARE_EXCEPTION_TYPE(Base, Openssl_Error);
-    };
-
        // all error code from project will be defined in public client api
        // OK, UNKNOWN, REVOKED, NO_NETWORK, TIMEOUT
     int verify(const CertificateImplVector &certificateChain);
 private:
-    int ocsp_verify(X509 *cert, X509 *issuer, STACK_OF(X509) *systemCerts, char *url, int *ocspStatus);
+    int ocsp_verify(X509 *cert, X509 *issuer, STACK_OF(X509) *systemCerts, char *url);
     void extractAIAUrl(X509 *cert, char *url);
     STACK_OF(X509) *systemCerts;