1 /* 2 * Copyright 2014 Haiku, Inc. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _CERTIFICATE_PRIVATE_H 6 #define _CERTIFICATE_PRIVATE_H 7 8 9 #ifdef OPENSSL_ENABLED 10 # include <openssl/ssl.h> 11 #endif 12 13 14 class BCertificate::Private { 15 public: 16 Private(X509* data); 17 18 public: 19 X509* fX509; 20 }; 21 22 23 #endif 24