vfs: check userland buffers before reading them.
[haiku.git] / src / kits / network / libnetapi / CertificatePrivate.h
blob54e13011f408a33d874540946bce98c0e814037d
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
9 #ifdef OPENSSL_ENABLED
10 # include <openssl/ssl.h>
13 class BCertificate::Private {
14 public:
15 Private(X509* data);
16 ~Private();
18 public:
19 X509* fX509;
21 #endif
24 #endif