summaryrefslogtreecommitdiff
path: root/src/include/ckm/ckm-certificate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/ckm/ckm-certificate.h')
-rw-r--r--src/include/ckm/ckm-certificate.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/include/ckm/ckm-certificate.h b/src/include/ckm/ckm-certificate.h
index e864b4b5..5496f0a8 100644
--- a/src/include/ckm/ckm-certificate.h
+++ b/src/include/ckm/ckm-certificate.h
@@ -27,8 +27,8 @@
#include <ckm/ckm-type.h>
extern "C" {
-struct x509_st;
-typedef struct x509_st X509;
+ struct x509_st;
+ typedef struct x509_st X509;
}
// Central Key Manager namespace
@@ -39,16 +39,16 @@ typedef std::shared_ptr<Certificate> CertificateShPtr;
class KEY_MANAGER_API Certificate {
public:
- virtual bool empty() const = 0;
+ virtual bool empty() const = 0;
- // This function will return openssl struct X509*.
- // You should not free the memory.
- // Memory will be freed in ~Certificate.
- virtual X509 *getX509() const = 0;
- virtual RawBuffer getDER() const = 0;
- virtual ~Certificate() {}
+ // This function will return openssl struct X509*.
+ // You should not free the memory.
+ // Memory will be freed in ~Certificate.
+ virtual X509 *getX509() const = 0;
+ virtual RawBuffer getDER() const = 0;
+ virtual ~Certificate() {}
- static CertificateShPtr create(const RawBuffer &rawBuffer, DataFormat format);
+ static CertificateShPtr create(const RawBuffer &rawBuffer, DataFormat format);
};
typedef std::vector<CertificateShPtr> CertificateShPtrVector;