-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathwolfssl-qt-512.patch
482 lines (459 loc) · 20.3 KB
/
wolfssl-qt-512.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
diff --git a/examples/network/network.pro b/examples/network/network.pro
index 1556e26ab1..e70744a570 100644
--- a/examples/network/network.pro
+++ b/examples/network/network.pro
@@ -30,6 +30,7 @@ qtHaveModule(widgets) {
}
qtConfig(openssl): SUBDIRS += securesocketclient
+ qtConfig(wolfssl): SUBDIRS += securesocketclient
qtConfig(dtls): SUBDIRS += secureudpserver secureudpclient
qtConfig(sctp): SUBDIRS += multistreamserver multistreamclient
}
diff --git a/src/network/configure.json b/src/network/configure.json
index 2c005f0efb..9ffa311459 100644
--- a/src/network/configure.json
+++ b/src/network/configure.json
@@ -7,13 +7,17 @@
"commandline": {
"assignments": {
- "OPENSSL_PATH": "openssl.prefix"
+ "OPENSSL_PATH": "openssl.prefix",
+ "WOLFSSL_PATH": "wolfssl.prefix"
},
"options": {
"libproxy": "boolean",
"openssl": { "type": "optionalString", "values": [ "no", "yes", "linked", "runtime" ] },
"openssl-linked": { "type": "void", "name": "openssl", "value": "linked" },
"openssl-runtime": { "type": "void", "name": "openssl", "value": "runtime" },
+ "wolfssl": { "type": "optionalString", "values": [ "no", "yes", "linked", "runtime" ] },
+ "wolfssl-linked": { "type": "void", "name": "wolfssl", "value": "linked" },
+ "wolfssl-runtime": { "type": "void", "name": "wolfssl", "value": "runtime" },
"dtls": "boolean",
"sctp": "boolean",
"securetransport": "boolean",
@@ -96,6 +100,37 @@
"condition": "!config.msvc"
}
]
+ },
+ "wolfssl_headers": {
+ "label": "wolfSSL Headers with OpenSSL Compatibility",
+ "export": "wolfssl",
+ "test": {
+ "tail": [
+ "#if !defined(OPENSSL_VERSION_NUMBER) || OPENSSL_VERSION_NUMBER-0 < 0x10001000L",
+ "# error wolfSSL OPENSSL_VERSION_NUMBER >= 0x10001000L is required",
+ "#endif"
+ ]
+ },
+ "headers": [ "wolfssl/options.h", "wolfssl/ssl.h" ],
+ "sources": [
+ {
+ "comment": "placeholder for OPENSSL_PATH",
+ "libs": ""
+ }
+ ]
+ },
+ "wolfssl": {
+ "label": "wolfSSL with OpenSSL Compatibility",
+ "test": {
+ "inherit": "wolfssl_headers",
+ "main": "SSL_free(SSL_new(0));"
+ },
+ "sources": [
+ { "type": "wolfssl" },
+ {
+ "libs": "-lwolfssl"
+ }
+ ]
}
},
@@ -222,7 +257,7 @@
"output": [
"privateFeature",
{ "type": "publicQtConfig", "condition": "!features.openssl-linked" },
- { "type": "define", "negative": true, "name": "QT_NO_OPENSSL" }
+ { "type": "define", "negative": true, "condition": "!features.openssl && !features.wolfssl", "name": "QT_NO_OPENSSL" }
]
},
"openssl-runtime": {
@@ -241,10 +276,37 @@
{ "type": "define", "name": "QT_LINKED_OPENSSL" }
]
},
+ "wolfssl": {
+ "label": "wolfSSL",
+ "enable": "false",
+ "condition": "features.wolfssl-runtime || features.wolfssl-linked",
+ "output": [
+ "privateFeature",
+ { "type": "publicQtConfig", "condition": "!features.wolfssl-linked" },
+ { "type": "define", "negative": true, "name": "QT_NO_WOLFSSL" }
+ ]
+ },
+ "wolfssl-runtime": {
+ "autoDetect": "!config.winrt && !config.wasm",
+ "enable": "input.wolfssl == 'yes' || input.wolfssl == 'runtime'",
+ "disable": "input.wolfssl == 'no' || input.wolfssl == 'linked' || input.ssl == 'no'",
+ "condition": "!features.securetransport && libs.wolfssl_headers"
+ },
+ "wolfssl-linked": {
+ "label": " Qt directly linked to wolfSSL",
+ "autoDetect": false,
+ "enable": "input.wolfssl == 'linked'",
+ "condition": "!features.securetransport && libs.wolfssl",
+ "output": [
+ "privateFeature",
+ { "type": "define", "name": "QT_LINKED_WOLFSSL" },
+ { "type": "define", "name": "QT_LINKED_OPENSSL" }
+ ]
+ },
"securetransport": {
"label": "SecureTransport",
"disable": "input.securetransport == 'no' || input.ssl == 'no'",
- "condition": "config.darwin && (input.openssl == '' || input.openssl == 'no')",
+ "condition": "config.darwin && (input.openssl == '' || input.openssl == 'no') && (input.wolfssl == '' || input.wolfssl == 'no')",
"output": [
"privateFeature",
{ "type": "define", "name": "QT_SECURETRANSPORT" }
@@ -252,19 +314,19 @@
},
"ssl": {
"label": "SSL",
- "condition": "config.winrt || features.securetransport || features.openssl",
+ "condition": "config.winrt || features.securetransport || features.openssl || features.wolfssl",
"output": [ "publicFeature", "feature" ]
},
"dtls": {
"label": "DTLS",
"purpose": "Provides a DTLS implementation",
"section": "Networking",
- "condition": "features.openssl && tests.dtls",
+ "condition": "features.openssl && !features.wolfssl && tests.dtls",
"output": [ "publicFeature" ]
},
"opensslv11": {
"label": "OpenSSL 1.1",
- "condition": "features.openssl && tests.openssl11",
+ "condition": "features.openssl && !features.wolfssl && tests.openssl11",
"output": [ "publicFeature" ]
},
"sctp": {
@@ -394,6 +456,8 @@ For example:
"openssl",
"openssl-linked",
"opensslv11",
+ "wolfssl",
+ "wolfssl-linked",
"dtls",
"sctp",
"system-proxies"
diff --git a/src/network/configure.pri b/src/network/configure.pri
index ad4d711cba..9190632afc 100644
--- a/src/network/configure.pri
+++ b/src/network/configure.pri
@@ -10,4 +10,14 @@ defineTest(qtConfLibrary_openssl) {
qtLog("$OPENSSL_LIBS is not set.")
return(false)
}
+defineTest(qtConfLibrary_wolfssl) {
+ eval(libs = $$getenv("WOLFSSL_LIBS"))
+ !isEmpty(libs) {
+ !qtConfResolveLibs($${1}.libs, $$libs): \
+ return(false)
+ return(true)
+ }
+ qtLog("$WOLFSSL_LIBS is not set.")
+ return(false)
+}
diff --git a/src/network/ssl/qsslcontext_openssl_p.h b/src/network/ssl/qsslcontext_openssl_p.h
index 48beebf134..d63133bd68 100644
--- a/src/network/ssl/qsslcontext_openssl_p.h
+++ b/src/network/ssl/qsslcontext_openssl_p.h
@@ -54,6 +54,9 @@
//
#include <QtNetwork/private/qtnetworkglobal_p.h>
+#if QT_CONFIG(wolfssl)
+#include "wolfssl/options.h"
+#endif
#include <QtCore/qvariant.h>
#include <QtNetwork/qsslcertificate.h>
#include <QtNetwork/qsslconfiguration.h>
diff --git a/src/network/ssl/qsslkey_p.cpp b/src/network/ssl/qsslkey_p.cpp
index 28e3e2efd8..8fa286c629 100644
--- a/src/network/ssl/qsslkey_p.cpp
+++ b/src/network/ssl/qsslkey_p.cpp
@@ -185,7 +185,7 @@ QByteArray QSslKeyPrivate::pemFromDer(const QByteArray &der, const QMap<QByteArr
if (isEncryptedPkcs8(der)) {
pem.prepend(pkcs8Header(true) + '\n' + extra);
pem.append(pkcs8Footer(true) + '\n');
-#if !QT_CONFIG(openssl)
+#if !QT_CONFIG(openssl) && !QT_CONFIG(wolfssl)
} else if (isPkcs8) {
pem.prepend(pkcs8Header(false) + '\n' + extra);
pem.append(pkcs8Footer(false) + '\n');
diff --git a/src/network/ssl/qsslkey_p.h b/src/network/ssl/qsslkey_p.h
index 7ae2cc740b..706d1d992b 100644
--- a/src/network/ssl/qsslkey_p.h
+++ b/src/network/ssl/qsslkey_p.h
@@ -93,7 +93,7 @@ public:
Qt::HANDLE handle() const;
bool isEncryptedPkcs8(const QByteArray &der) const;
-#if !QT_CONFIG(openssl)
+#if !QT_CONFIG(openssl) && !QT_CONFIG(wolfssl)
QByteArray decryptPkcs8(const QByteArray &encrypted, const QByteArray &passPhrase);
bool isPkcs8 = false;
#endif
diff --git a/src/network/ssl/qsslsocket_openssl.cpp b/src/network/ssl/qsslsocket_openssl.cpp
index c8bc6e069a..1a0d5f03ba 100644
--- a/src/network/ssl/qsslsocket_openssl.cpp
+++ b/src/network/ssl/qsslsocket_openssl.cpp
@@ -138,6 +138,7 @@ static unsigned int q_ssl_psk_server_callback(SSL *ssl,
}
#ifdef TLS1_3_VERSION
+#if OPENSSL_VERSION_NUMBER >= 0x10101006L
#ifndef OPENSSL_NO_PSK
static unsigned int q_ssl_psk_restore_client(SSL *ssl,
const char *hint,
@@ -183,6 +184,7 @@ static int q_ssl_psk_use_session_callback(SSL *ssl, const EVP_MD *md, const unsi
return 1; // need to return 1 or else "the connection setup fails."
}
+#endif // OPENSSL_VERSION_NUMBER >= 0x10101006L
#endif // TLS1_3_VERSION
#endif
diff --git a/src/network/ssl/qsslsocket_openssl_p.h b/src/network/ssl/qsslsocket_openssl_p.h
index c16b9d5f76..47f8f5a934 100644
--- a/src/network/ssl/qsslsocket_openssl_p.h
+++ b/src/network/ssl/qsslsocket_openssl_p.h
@@ -79,6 +79,11 @@
#endif
#endif // Q_OS_WIN
+#if QT_CONFIG(wolfssl)
+#include "wolfssl/options.h"
+#include "wolfssl/ssl.h"
+#endif
+
#include <openssl/asn1.h>
#include <openssl/bio.h>
#include <openssl/bn.h>
diff --git a/src/network/ssl/qsslsocket_openssl_symbols_p.h b/src/network/ssl/qsslsocket_openssl_symbols_p.h
index bfdfbf0efc..ac9a3652ef 100644
--- a/src/network/ssl/qsslsocket_openssl_symbols_p.h
+++ b/src/network/ssl/qsslsocket_openssl_symbols_p.h
@@ -69,6 +69,11 @@
//
#include <QtNetwork/private/qtnetworkglobal_p.h>
+#if QT_CONFIG(wolfssl)
+#include "wolfssl/options.h"
+#include "wolfssl/ssl.h"
+#endif
+
#include "qsslsocket_openssl_p.h"
#include <QtCore/qglobal.h>
diff --git a/src/network/ssl/qsslsocket_opensslpre11_symbols_p.h b/src/network/ssl/qsslsocket_opensslpre11_symbols_p.h
index b7bac5d2a2..59d1bb694e 100644
--- a/src/network/ssl/qsslsocket_opensslpre11_symbols_p.h
+++ b/src/network/ssl/qsslsocket_opensslpre11_symbols_p.h
@@ -211,11 +211,18 @@ DSA *q_d2i_DSAPrivateKey(DSA **a, unsigned char **pp, long length);
#define q_X509_getm_notBefore(x) X509_get_notBefore(x)
// "Forward compatibility" with OpenSSL 1.1 (to save on #if-ery elsewhere):
-#define q_X509_get_version(x509) q_ASN1_INTEGER_get((x509)->cert_info->version)
+#if QT_CONFIG(wolfssl)
+ #define q_X509_get_version(x509) wolfSSL_X509_get_version(x509)
+ #define q_X509_get_pubkey(x509) wolfSSL_X509_get_pubkey(x509)
+ #define q_SSL_SESSION_get_ticket_lifetime_hint(s) wolfSSL_SESSION_get_timeout(s)
+
+#else
+ #define q_X509_get_version(x509) q_ASN1_INTEGER_get((x509)->cert_info->version)
+ #define q_X509_get_pubkey(x509) q_X509_PUBKEY_get((x509)->cert_info->key)
+ #define q_SSL_SESSION_get_ticket_lifetime_hint(s) ((s)->tlsext_tick_lifetime_hint)
+#endif
#define q_ASN1_STRING_get0_data(x) q_ASN1_STRING_data(x)
#define q_EVP_PKEY_base_id(pkey) ((pkey)->type)
-#define q_X509_get_pubkey(x509) q_X509_PUBKEY_get((x509)->cert_info->key)
-#define q_SSL_SESSION_get_ticket_lifetime_hint(s) ((s)->tlsext_tick_lifetime_hint)
#define q_RSA_bits(rsa) q_BN_num_bits((rsa)->n)
#define q_DSA_bits(dsa) q_BN_num_bits((dsa)->p)
#define q_X509_STORE_set_verify_cb(s,c) X509_STORE_set_verify_cb_func((s),(c))
diff --git a/src/network/ssl/ssl.pri b/src/network/ssl/ssl.pri
index 6975264038..828e3bc7dd 100644
--- a/src/network/ssl/ssl.pri
+++ b/src/network/ssl/ssl.pri
@@ -13,7 +13,9 @@ SOURCES += ssl/qasn1element.cpp \
ssl/qsslcertificate.cpp \
ssl/qsslcertificateextension.cpp
-!qtConfig(openssl): SOURCES += ssl/qsslcertificate_qt.cpp
+!qtConfig(openssl) {
+ !qtConfig(wolfssl): SOURCES += ssl/qsslcertificate_qt.cpp
+}
qtConfig(ssl) {
HEADERS += ssl/qsslconfiguration.h \
@@ -116,6 +118,47 @@ qtConfig(ssl) {
SOURCES += ssl/qwindowscarootfetcher.cpp
}
}
+
+ qtConfig(wolfssl) {
+ HEADERS += ssl/qsslcontext_openssl_p.h \
+ ssl/qsslsocket_openssl_p.h \
+ ssl/qsslsocket_openssl_symbols_p.h
+ SOURCES += ssl/qsslsocket_openssl_symbols.cpp \
+ ssl/qssldiffiehellmanparameters_openssl.cpp \
+ ssl/qsslcertificate_openssl.cpp \
+ ssl/qsslellipticcurve_openssl.cpp \
+ ssl/qsslkey_openssl.cpp \
+ ssl/qsslsocket_openssl.cpp \
+ ssl/qsslcontext_openssl.cpp \
+
+
+ qtConfig(opensslv11) {
+ HEADERS += ssl/qsslsocket_openssl11_symbols_p.h
+ SOURCES += ssl/qsslsocket_openssl11.cpp \
+ ssl/qsslcontext_openssl11.cpp
+
+ QMAKE_CXXFLAGS += -DOPENSSL_API_COMPAT=0x10100000L
+ } else {
+ HEADERS += ssl/qsslsocket_opensslpre11_symbols_p.h
+ SOURCES += ssl/qsslsocket_opensslpre11.cpp \
+ ssl/qsslcontext_opensslpre11.cpp
+ }
+
+ darwin:SOURCES += ssl/qsslsocket_mac_shared.cpp
+
+ android:!android-embedded: SOURCES += ssl/qsslsocket_openssl_android.cpp
+
+ qtConfig(wolfssl-linked): \
+ QMAKE_USE_FOR_PRIVATE += wolfssl
+ else: \
+ QMAKE_USE_FOR_PRIVATE += wolfssl/nolink
+ win32 {
+ LIBS_PRIVATE += -lcrypt32
+ HEADERS += ssl/qwindowscarootfetcher_p.h
+ SOURCES += ssl/qwindowscarootfetcher.cpp
+ }
+ }
+
}
HEADERS += ssl/qpassworddigestor.h
diff --git a/tests/auto/network/ssl/qsslcertificate/tst_qsslcertificate.cpp b/tests/auto/network/ssl/qsslcertificate/tst_qsslcertificate.cpp
index 7f8580ddd6..c2cc3e885e 100644
--- a/tests/auto/network/ssl/qsslcertificate/tst_qsslcertificate.cpp
+++ b/tests/auto/network/ssl/qsslcertificate/tst_qsslcertificate.cpp
@@ -944,6 +944,9 @@ void tst_QSslCertificate::multipleCommonNames()
QSslCertificate::fromPath(testDataDir + "more-certificates/test-cn-two-cns-cert.pem");
QVERIFY(certList.count() > 0);
+#ifndef QT_NO_WOLFSSL
+ QSKIP("wolfSSL does not support multiple common names");
+#endif
QStringList commonNames = certList[0].subjectInfo(QSslCertificate::CommonName);
QVERIFY(commonNames.contains(QString("www.example.com")));
QVERIFY(commonNames.contains(QString("www2.example.com")));
@@ -1315,6 +1318,9 @@ void tst_QSslCertificate::pkcs12()
#ifdef QT_NO_OPENSSL
QEXPECT_FAIL("", "QTBUG-40884: WinRT API does not support pkcs12 imports", Abort);
+#endif
+#ifndef QT_NO_WOLFSSL
+ QSKIP("wolfSSL supports PKCS#12, but not the RC2 cipher needed for this test.");
#endif
ok = QSslCertificate::importPkcs12(&f, &key, &cert, &caCerts);
QVERIFY(ok);
diff --git a/tests/auto/network/ssl/qsslkey/tst_qsslkey.cpp b/tests/auto/network/ssl/qsslkey/tst_qsslkey.cpp
index ddfe52c5e4..c36be6acc2 100644
--- a/tests/auto/network/ssl/qsslkey/tst_qsslkey.cpp
+++ b/tests/auto/network/ssl/qsslkey/tst_qsslkey.cpp
@@ -200,6 +200,14 @@ void tst_QSslKey::constructor()
QByteArray passphrase;
if (QByteArray(QTest::currentDataTag()).contains("-pkcs8-"))
passphrase = QByteArray("1234");
+ #ifndef QT_NO_WOLFSSL
+ if (QByteArray(QTest::currentDataTag()).contains("rc2") || QByteArray(QTest::currentDataTag()).contains("RC2"))
+ QSKIP("wolfSSL does not support the rc2 algorithm.");
+ if (QByteArray(QTest::currentDataTag()).contains("2des") || QByteArray(QTest::currentDataTag()).contains("2DES"))
+ QSKIP("wolfSSL does not support the 2des algorithm.");
+ if (QByteArray(QTest::currentDataTag()).contains("rc4-40") || QByteArray(QTest::currentDataTag()).contains("RC4"))
+ QSKIP("wolfSSL does not support the 40 bit key RC4 algorithm.");
+ #endif
QSslKey key(encoded, algorithm, format, type, passphrase);
QVERIFY(!key.isNull());
}
@@ -232,6 +240,14 @@ void tst_QSslKey::constructorHandle()
QByteArray passphrase;
if (QByteArray(QTest::currentDataTag()).contains("-pkcs8-"))
passphrase = "1234";
+ #ifndef QT_NO_WOLFSSL
+ if (QByteArray(QTest::currentDataTag()).contains("rc2") || QByteArray(QTest::currentDataTag()).contains("RC2"))
+ QSKIP("wolfSSL does not support the rc2 algorithm.");
+ if (QByteArray(QTest::currentDataTag()).contains("2des") || QByteArray(QTest::currentDataTag()).contains("2DES"))
+ QSKIP("wolfSSL does not support the 2des algorithm.");
+ if (QByteArray(QTest::currentDataTag()).contains("rc4-40") || QByteArray(QTest::currentDataTag()).contains("RC4"))
+ QSKIP("wolfSSL does not support the 40 bit key RC4 algorithm.");
+ #endif
BIO* bio = q_BIO_new(q_BIO_s_mem());
q_BIO_write(bio, pem.constData(), pem.length());
QSslKey key(func(bio, nullptr, nullptr, static_cast<void *>(passphrase.data())), type);
@@ -309,6 +325,14 @@ void tst_QSslKey::length()
QByteArray passphrase;
if (QByteArray(QTest::currentDataTag()).contains("-pkcs8-"))
passphrase = QByteArray("1234");
+ #ifndef QT_NO_WOLFSSL
+ if (QByteArray(QTest::currentDataTag()).contains("rc2") || QByteArray(QTest::currentDataTag()).contains("RC2"))
+ QSKIP("wolfSSL does not support the rc2 algorithm.");
+ if (QByteArray(QTest::currentDataTag()).contains("2des") || QByteArray(QTest::currentDataTag()).contains("2DES"))
+ QSKIP("wolfSSL does not support the 2des algorithm.");
+ if (QByteArray(QTest::currentDataTag()).contains("rc4-40") || QByteArray(QTest::currentDataTag()).contains("RC4"))
+ QSKIP("wolfSSL does not support the 40 bit key RC4 algorithm.");
+ #endif
QSslKey key(encoded, algorithm, format, type, passphrase);
QVERIFY(!key.isNull());
QCOMPARE(key.length(), length);
@@ -432,7 +456,9 @@ void tst_QSslKey::passphraseChecks_data()
QTest::newRow("DES") << (testDataDir + "rsa-with-passphrase-des.pem");
QTest::newRow("3DES") << (testDataDir + "rsa-with-passphrase-3des.pem");
+ #ifdef QT_NO_WOLFSSL
QTest::newRow("RC2") << (testDataDir + "rsa-with-passphrase-rc2.pem");
+ #endif
}
void tst_QSslKey::passphraseChecks()
@@ -561,7 +587,7 @@ void tst_QSslKey::encrypt_data()
<< QSslKeyPrivate::DesEde3Cbc << QByteArray("0123456789abcdefghijklmn")
<< QByteArray(8, 'a')
<< QByteArray::fromHex("F2A5A87763C54A72A3224103D90CDB03");
-
+#ifdef QT_NO_WOLFSSL
QTest::newRow("RC2-40-CBC, length 0")
<< QSslKeyPrivate::Rc2Cbc << QByteArray("01234")
<< QByteArray()
@@ -588,6 +614,7 @@ void tst_QSslKey::encrypt_data()
<< QSslKeyPrivate::Rc2Cbc << QByteArray("012345679abcdefg")
<< QByteArray(8, 'a')
<< QByteArray::fromHex("5AEC1A5B295660B02613454232F7DECE");
+#endif
}
void tst_QSslKey::encrypt()
@@ -599,10 +626,12 @@ void tst_QSslKey::encrypt()
QByteArray iv("abcdefgh");
#ifdef Q_OS_WINRT
+#ifdef QT_NO_WOLFSSL
QEXPECT_FAIL("RC2-40-CBC, length 0", "WinRT treats RC2 as 128-bit", Abort);
QEXPECT_FAIL("RC2-40-CBC, length 8", "WinRT treats RC2 as 128-bit", Abort);
QEXPECT_FAIL("RC2-64-CBC, length 0", "WinRT treats RC2 as 128-bit", Abort);
QEXPECT_FAIL("RC2-64-CBC, length 8", "WinRT treats RC2 as 128-bit", Abort);
+#endif
#endif
QByteArray encrypted = QSslKeyPrivate::encrypt(cipher, plainText, key, iv);
QCOMPARE(encrypted, cipherText);
diff --git a/tests/auto/network/ssl/qsslsocket/tst_qsslsocket.cpp b/tests/auto/network/ssl/qsslsocket/tst_qsslsocket.cpp
index 307e3d82bd..ab72c789f5 100644
--- a/tests/auto/network/ssl/qsslsocket/tst_qsslsocket.cpp
+++ b/tests/auto/network/ssl/qsslsocket/tst_qsslsocket.cpp
@@ -3296,7 +3296,11 @@ void tst_QSslSocket::verifyClientCertificate_data()
QTest::newRow("ValidServerCert:AutoVerifyPeer") << QSslSocket::AutoVerifyPeer << serverCerts << serverKey << true;
QTest::newRow("ValidServerCert:QueryPeer") << QSslSocket::QueryPeer << serverCerts << serverKey << true;
QTest::newRow("ValidServerCert:VerifyNone") << QSslSocket::VerifyNone << serverCerts << serverKey << true;
+#ifdef QT_NO_WOLFSSL
QTest::newRow("ValidServerCert:VerifyPeer") << QSslSocket::VerifyPeer << serverCerts << serverKey << false;
+#else
+ QWARN("wolfSSL does not currently support parsing Netscape Cert Type Extensions.");
+#endif
// valid certificate, correct usage (client certificate)
QList<QSslCertificate> validCerts = QSslCertificate::fromPath(testDataDir + "certs/bogus-client.crt");