Qt 4.8
Classes | Functions
qsslcipher.h File Reference
#include <QtCore/qstring.h>
#include <QtCore/qscopedpointer.h>
#include <QtNetwork/qssl.h>

Go to the source code of this file.

Classes

class  QSslCipher
 The QSslCipher class represents an SSL cryptographic cipher. More...
 

Functions

Q_NETWORK_EXPORT QDebug operator<< (QDebug debug, const QSslCipher &cipher)
 

Function Documentation

◆ operator<<()

Q_NETWORK_EXPORT QDebug operator<< ( QDebug  debug,
const QSslCipher cipher 
)

Definition at line 234 of file qsslcipher.cpp.

235 {
236  debug << "QSslCipher(name=" << qPrintable(cipher.name())
237  << ", bits=" << cipher.usedBits()
238  << ", proto=" << qPrintable(cipher.protocolString())
239  << ')';
240  return debug;
241 }
QString protocolString() const
Returns the cipher&#39;s protocol as a QString.
Definition: qsslcipher.cpp:216
QString name() const
Returns the name of the cipher, or an empty QString if this is a null cipher.
Definition: qsslcipher.cpp:162
int usedBits() const
Returns the number of bits used by the cipher.
Definition: qsslcipher.cpp:182
#define qPrintable(string)
Definition: qglobal.h:1750