cd3dece750
This adds the infrastructure for reading and writing encrypted private keys when using non-OpenSSL backends. Each platform must provide its cryptographic encrypt / decrypt functions. As WinRT already uses the common parser, this commit includes an implementation for that platform. Done-with: Andrew Knight <andrew.knight@digia.com> Task-number: QTBUG-40688 Change-Id: I0d153425ce63601ff03b784a111e13962061025f Reviewed-by: Richard J. Moore <rich@kde.org>
14 lines
299 B
Prolog
14 lines
299 B
Prolog
CONFIG += testcase
|
|
CONFIG += parallel_test
|
|
|
|
SOURCES += tst_qsslkey.cpp
|
|
!wince*:win32:LIBS += -lws2_32
|
|
QT = core network testlib
|
|
contains(QT_CONFIG, private_tests) {
|
|
QT += core-private network-private
|
|
}
|
|
|
|
TARGET = tst_qsslkey
|
|
|
|
TESTDATA += keys/* rsa-without-passphrase.pem rsa-with-passphrase.pem
|