SSL Certificate Decrypt proplem in qml
-
wrote on 13 Oct 2015, 08:12 last edited by
I have qt/qml project an I use wcf encrypt service wich begin https.This service can't work in mobile.How can I decrypt or load certificate in qml side ?
Thanks
-
Hi,
What mobile platform are you referring to ? Which version of Qt are you using ?
-
wrote on 14 Oct 2015, 06:54 last edited by
Hi,
I have using android platfoform.I have use QT 5.4.2 version (Android for armeobi- v7a GCC 4.9,QT 5.4.2)Thanks
-
Did you compile OpenSSL for Android ?
-
wrote on 20 Oct 2015, 07:16 last edited by
Hi,
Problem has solved with this code like below:#include <QSslConfiguration>
#include <QSslSocket>QSslConfiguration config = QSslConfiguration::defaultConfiguration(); config.setPeerVerifyMode(QSslSocket::VerifyNone); QSslConfiguration::setDefaultConfiguration(config);
Thanks
-
wrote on 20 Oct 2015, 07:24 last edited by
hi , i have a problem like this, can u help me plz ?
my code is about send mail in smtp - tls connection on port 587 , but i have problem when i use socket->startClientEncryption(); and then i have timeout error.
plz help me about that. thank u
1/6