summaryrefslogtreecommitdiff
path: root/security/qca-tls/files/patch-qca-tls.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'security/qca-tls/files/patch-qca-tls.cpp')
-rw-r--r--security/qca-tls/files/patch-qca-tls.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/security/qca-tls/files/patch-qca-tls.cpp b/security/qca-tls/files/patch-qca-tls.cpp
deleted file mode 100644
index 446fead27c72..000000000000
--- a/security/qca-tls/files/patch-qca-tls.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
---- qca-tls.cpp.orig 2003-12-10 19:53:57.000000000 +0300
-+++ qca-tls.cpp 2012-02-28 14:06:08.000000000 +0400
-@@ -454,7 +454,11 @@
- if(!r) {
- // try this other public function, for whatever reason
- p = (void *)in;
-+#ifdef OSSL_098
-+ r = d2i_RSA_PUBKEY(NULL, (const unsigned char **)&p, len);
-+#else
- r = d2i_RSA_PUBKEY(NULL, (unsigned char **)&p, len);
-+#endif
- }
- if(r) {
- if(pub) {
-@@ -799,7 +803,11 @@
- bool createFromDER(const char *in, unsigned int len)
- {
- unsigned char *p = (unsigned char *)in;
-+#ifdef OSSL_098
-+ X509 *t = d2i_X509(NULL, (const unsigned char**)&p, len);
-+#else
- X509 *t = d2i_X509(NULL, &p, len);
-+#endif
- if(!t)
- return false;
- fromX509(t);
-@@ -945,7 +953,11 @@
- RSAKeyContext *key;
-
- SSL *ssl;
-+#if OPENSSL_VERSION_NUMBER >= 0x10000000L
-+ const SSL_METHOD *method;
-+#else
- SSL_METHOD *method;
-+#endif
- SSL_CTX *context;
- BIO *rbio, *wbio;
- CertContext cc;