repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tcp: Fix 64 bit build with debugging features enabled.
[haiku.git]
/
src
/
kits
/
network
/
libnetapi
/
CertificatePrivate.h
blob
d75495c218f27dfd0f2d53fb4a6095fd747a3343
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
12
13
class BCertificate
::
Private
{
14
public
:
15
Private
(
X509
*
data
);
16
17
public
:
18
X509
*
fX509
;
19
};
20
#endif
21
22
23
#endif