summaryrefslogtreecommitdiff
path: root/ustream-polarssl.h
diff options
context:
space:
mode:
Diffstat (limited to 'ustream-polarssl.h')
-rw-r--r--ustream-polarssl.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/ustream-polarssl.h b/ustream-polarssl.h
index 86bdc36..e7445f7 100644
--- a/ustream-polarssl.h
+++ b/ustream-polarssl.h
@@ -25,10 +25,21 @@
#include <polarssl/x509.h>
#include <polarssl/rsa.h>
#include <polarssl/error.h>
+#include <polarssl/version.h>
+
+#if POLARSSL_VERSION_MAJOR > 1 || POLARSSL_VERSION_MINOR >= 3
+#define USE_VERSION_1_3
+#else
+#define x509_crt x509_cert
+#endif
struct ustream_polarssl_ctx {
- x509_cert cert;
+#ifdef USE_VERSION_1_3
+ pk_context key;
+#else
rsa_context key;
+#endif
+ x509_crt cert;
bool server;
};