summaryrefslogtreecommitdiffstats
path: root/src/network/ssl/qsslsocket.h
diff options
context:
space:
mode:
authorGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2014-10-15 15:13:47 +0200
committerGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2015-01-23 00:35:21 +0100
commitbd26defd9bdddf8619a8d6ce1c6cb90b28c27d88 (patch)
treea790de5c3bee36067783756ecf36af1e4e40e82d /src/network/ssl/qsslsocket.h
parente267505d5472e8c3150ad1cd197d11c955e316c6 (diff)
QSslSocket: introduce support for TLS PSK (client side)
[ChangeLog][QtNetwork][QSslSocket] It is now possible to use TLS PSK ciphersuites in client sockets. Task-number: QTBUG-39077 Change-Id: I5523a2be33d46230c6f4106c322fab8a5afa37b4 Reviewed-by: Richard J. Moore <rich@kde.org>
Diffstat (limited to 'src/network/ssl/qsslsocket.h')
-rw-r--r--src/network/ssl/qsslsocket.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/network/ssl/qsslsocket.h b/src/network/ssl/qsslsocket.h
index f5ab1527dc..16ae97e49e 100644
--- a/src/network/ssl/qsslsocket.h
+++ b/src/network/ssl/qsslsocket.h
@@ -52,6 +52,7 @@ class QSslCipher;
class QSslCertificate;
class QSslConfiguration;
class QSslEllipticCurve;
+class QSslPreSharedKeyAuthenticator;
class QSslSocketPrivate;
class Q_NETWORK_EXPORT QSslSocket : public QTcpSocket
@@ -199,6 +200,7 @@ Q_SIGNALS:
void sslErrors(const QList<QSslError> &errors);
void modeChanged(QSslSocket::SslMode newMode);
void encryptedBytesWritten(qint64 totalBytes);
+ void preSharedKeyAuthenticationRequired(QSslPreSharedKeyAuthenticator *authenticator);
protected:
qint64 readData(char *data, qint64 maxlen) Q_DECL_OVERRIDE;