QSslPreSharedKeyAuthenticator Class

The QSslPreSharedKeyAuthenticator class provides authentication data for pre shared keys (PSK) ciphersuites. 更多...

頭: #include <QSslPreSharedKeyAuthenticator>
qmake: QT += network
Since: Qt 5.5

該類在 Qt 5.5 引入。

注意: 此類的所有函數 可重入 .

公共函數

QSslPreSharedKeyAuthenticator (const QSslPreSharedKeyAuthenticator & authenticator )
QSslPreSharedKeyAuthenticator ()
QSslPreSharedKeyAuthenticator & operator= (QSslPreSharedKeyAuthenticator && authenticator )
QSslPreSharedKeyAuthenticator & operator= (const QSslPreSharedKeyAuthenticator & authenticator )
~QSslPreSharedKeyAuthenticator ()
QByteArray identity () const
QByteArray identityHint () const
int maximumIdentityLength () const
int maximumPreSharedKeyLength () const
QByteArray preSharedKey () const
void setIdentity (const QByteArray & identity )
void setPreSharedKey (const QByteArray & preSharedKey )
void swap (QSslPreSharedKeyAuthenticator & authenticator )
bool operator!= (const QSslPreSharedKeyAuthenticator & lhs , const QSslPreSharedKeyAuthenticator & rhs )
bool operator== (const QSslPreSharedKeyAuthenticator & lhs , const QSslPreSharedKeyAuthenticator & rhs )

詳細描述

The QSslPreSharedKeyAuthenticator class is used by an SSL socket to provide the required authentication data in a pre shared key (PSK) ciphersuite.

In a PSK handshake, the client must derive a key, which must match the key set on the server. The exact algorithm of deriving the key depends on the application; however, for this purpose, the server may send an identity hint to the client. This hint, combined with other information (for instance a passphrase), is then used by the client to construct the shared key.

The QSslPreSharedKeyAuthenticator provides means to client applications for completing the PSK handshake. The client application needs to connect a slot to the QSslSocket::preSharedKeyAuthenticationRequired () signal:

    connect(socket, &QSslSocket::preSharedKeyAuthenticationRequired,
            this, &AuthManager::handlePreSharedKeyAuthentication);
					

The signal carries a QSslPreSharedKeyAuthenticator object containing the identity hint the server sent to the client, and which must be filled with the corresponding client identity and the derived key:

    void AuthManager::handlePreSharedKeyAuthentication(QSslPreSharedKeyAuthenticator *authenticator)
    {
        authenticator->setIdentity("My Qt App");
        const QByteArray key = deriveKey(authenticator->identityHint(), passphrase);
        authenticator->setPreSharedKey(key);
    }
					

注意: PSK ciphersuites are supported only when using OpenSSL 1.0.1 (or greater) as the SSL backend.

注意: PSK is currently only supported in OpenSSL.

另請參閱 QSslSocket .

成員函數文檔編製

QSslPreSharedKeyAuthenticator:: QSslPreSharedKeyAuthenticator (const QSslPreSharedKeyAuthenticator & authenticator )

Constructs a QSslPreSharedKeyAuthenticator object as a copy of authenticator .

另請參閱 operator= ().

QSslPreSharedKeyAuthenticator:: QSslPreSharedKeyAuthenticator ()

Constructs a default QSslPreSharedKeyAuthenticator object.

The identity hint, the identity and the key will be initialized to empty byte arrays; the maximum length for both the identity and the key will be initialized to 0.

QSslPreSharedKeyAuthenticator &QSslPreSharedKeyAuthenticator:: operator= ( QSslPreSharedKeyAuthenticator && authenticator )

Move-assigns the QSslPreSharedKeyAuthenticator 對象 authenticator to this object, and returns a reference to the moved instance.

QSslPreSharedKeyAuthenticator &QSslPreSharedKeyAuthenticator:: operator= (const QSslPreSharedKeyAuthenticator & authenticator )

賦值 QSslPreSharedKeyAuthenticator 對象 authenticator to this object, and returns a reference to the copy.

QSslPreSharedKeyAuthenticator:: ~QSslPreSharedKeyAuthenticator ()

銷毀 QSslPreSharedKeyAuthenticator 對象。

QByteArray QSslPreSharedKeyAuthenticator:: identity () const

Returns the PSK client identity.

另請參閱 setIdentity ().

QByteArray QSslPreSharedKeyAuthenticator:: identityHint () const

Returns the PSK identity hint as provided by the server. The interpretation of this hint is left to the application.

int QSslPreSharedKeyAuthenticator:: maximumIdentityLength () const

Returns the maximum length, in bytes, of the PSK client identity.

注意: it is possible to set an identity whose length is greater than maximumIdentityLength(); in this case, only the first maximumIdentityLength() bytes will be actually sent to the server.

另請參閱 setIdentity ().

int QSslPreSharedKeyAuthenticator:: maximumPreSharedKeyLength () const

Returns the maximum length, in bytes, of the pre shared key.

注意: it is possible to set a key whose length is greater than the maximumPreSharedKeyLength(); in this case, only the first maximumPreSharedKeyLength() bytes will be actually sent to the server.

另請參閱 setPreSharedKey ().

QByteArray QSslPreSharedKeyAuthenticator:: preSharedKey () const

Returns the pre shared key.

另請參閱 setPreSharedKey ().

void QSslPreSharedKeyAuthenticator:: setIdentity (const QByteArray & identity )

Sets the PSK client identity (to be advised to the server) to identity .

注意: it is possible to set an identity whose length is greater than maximumIdentityLength (); in this case, only the first maximumIdentityLength () bytes will be actually sent to the server.

另請參閱 identity () 和 maximumIdentityLength ().

void QSslPreSharedKeyAuthenticator:: setPreSharedKey (const QByteArray & preSharedKey )

Sets the pre shared key to preSharedKey .

注意: it is possible to set a key whose length is greater than the maximumPreSharedKeyLength (); in this case, only the first maximumPreSharedKeyLength () bytes will be actually sent to the server.

另請參閱 preSharedKey (), maximumPreSharedKeyLength (),和 QByteArray::fromHex ().

void QSslPreSharedKeyAuthenticator:: swap ( QSslPreSharedKeyAuthenticator & authenticator )

Swaps the QSslPreSharedKeyAuthenticator 對象 authenticator 與此對象。此操作很快且從不失敗。

相關非成員

bool operator!= (const QSslPreSharedKeyAuthenticator & lhs , const QSslPreSharedKeyAuthenticator & rhs )

Returns true if the authenticator object lhs is different than rhs ; false otherwise.

該函數在 Qt 5.5 引入。

bool operator== (const QSslPreSharedKeyAuthenticator & lhs , const QSslPreSharedKeyAuthenticator & rhs )

Returns true if the authenticator object lhs 等於 rhs ; false otherwise.

Two authenticator objects are equal if and only if they have the same identity hint, identity, pre shared key, maximum length for the identity and maximum length for the pre shared key.

該函數在 Qt 5.5 引入。