![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
The QSslCipher class represents an SSL cryptographic cipher. More...
#include <qsslcipher.h>
Public Member Functions | |
QSslCipher () | |
Constructs an empty QSslCipher object. | |
QSslCipher (const QString &name) | |
QSslCipher (const QString &name, QSsl::SslProtocol protocol) | |
Constructs a QSslCipher object for the cipher determined by name and protocol. | |
QSslCipher (const QSslCipher &other) | |
Constructs an identical copy of the other cipher. | |
QSslCipher & | operator= (QSslCipher &&other) noexcept |
QSslCipher & | operator= (const QSslCipher &other) |
Copies the contents of other into this cipher, making the two ciphers identical. | |
~QSslCipher () | |
Destroys the QSslCipher object. | |
void | swap (QSslCipher &other) noexcept |
bool | operator== (const QSslCipher &other) const |
Returns true if this cipher is the same as other; otherwise, false is returned. | |
bool | operator!= (const QSslCipher &other) const |
Returns true if this cipher is not the same as other; otherwise, false is returned. | |
bool | isNull () const |
Returns true if this is a null cipher; otherwise returns false . | |
QString | name () const |
Returns the name of the cipher, or an empty QString if this is a null cipher. | |
int | supportedBits () const |
Returns the number of bits supported by the cipher. | |
int | usedBits () const |
Returns the number of bits used by the cipher. | |
QString | keyExchangeMethod () const |
Returns the cipher's key exchange method as a QString. | |
QString | authenticationMethod () const |
Returns the cipher's authentication method as a QString. | |
QString | encryptionMethod () const |
Returns the cipher's encryption method as a QString. | |
QString | protocolString () const |
Returns the cipher's protocol as a QString. | |
QSsl::SslProtocol | protocol () const |
Returns the cipher's protocol type, or \l QSsl::UnknownProtocol if QSslCipher is unable to determine the protocol (protocolString() may contain more information). |
Friends | |
class | QTlsBackend |
The QSslCipher class represents an SSL cryptographic cipher.
\reentrant
\inmodule QtNetwork
QSslCipher stores information about one cryptographic cipher. It is most commonly used with QSslSocket, either for configuring which ciphers the socket can use, or for displaying the socket's ciphers to the user.
Definition at line 22 of file qsslcipher.h.
QT_BEGIN_NAMESPACE QSslCipher::QSslCipher | ( | ) |
Constructs an empty QSslCipher object.
Definition at line 39 of file qsslcipher.cpp.
|
explicit |
Constructs a QSslCipher object for the cipher determined by name. The constructor accepts only supported ciphers (i.e., the name must identify a cipher in the list of ciphers returned by QSslSocket::supportedCiphers()).
You can call isNull() after construction to check if name correctly identified a supported cipher.
Definition at line 55 of file qsslcipher.cpp.
QSslCipher::QSslCipher | ( | const QString & | name, |
QSsl::SslProtocol | protocol ) |
Constructs a QSslCipher object for the cipher determined by name and protocol.
The constructor accepts only supported ciphers (i.e., the name and protocol must identify a cipher in the list of ciphers returned by QSslSocket::supportedCiphers()).
You can call isNull() after construction to check if name and protocol correctly identified a supported cipher.
Definition at line 77 of file qsslcipher.cpp.
QSslCipher::QSslCipher | ( | const QSslCipher & | other | ) |
Constructs an identical copy of the other cipher.
Definition at line 92 of file qsslcipher.cpp.
QSslCipher::~QSslCipher | ( | ) |
Destroys the QSslCipher object.
Definition at line 101 of file qsslcipher.cpp.
QString QSslCipher::authenticationMethod | ( | ) | const |
Returns the cipher's authentication method as a QString.
Definition at line 187 of file qsslcipher.cpp.
QString QSslCipher::encryptionMethod | ( | ) | const |
Returns the cipher's encryption method as a QString.
Definition at line 195 of file qsslcipher.cpp.
bool QSslCipher::isNull | ( | ) | const |
Returns true
if this is a null cipher; otherwise returns false
.
Definition at line 140 of file qsslcipher.cpp.
QString QSslCipher::keyExchangeMethod | ( | ) | const |
Returns the cipher's key exchange method as a QString.
Definition at line 179 of file qsslcipher.cpp.
QString QSslCipher::name | ( | ) | const |
Returns the name of the cipher, or an empty QString if this is a null cipher.
Definition at line 151 of file qsslcipher.cpp.
|
inline |
Returns true
if this cipher is not the same as other; otherwise, false is returned.
Definition at line 37 of file qsslcipher.h.
QSslCipher & QSslCipher::operator= | ( | const QSslCipher & | other | ) |
Copies the contents of other into this cipher, making the two ciphers identical.
Definition at line 109 of file qsslcipher.cpp.
|
inlinenoexcept |
Definition at line 29 of file qsslcipher.h.
bool QSslCipher::operator== | ( | const QSslCipher & | other | ) | const |
Returns true
if this cipher is the same as other; otherwise, false is returned.
Definition at line 125 of file qsslcipher.cpp.
QSsl::SslProtocol QSslCipher::protocol | ( | ) | const |
Returns the cipher's protocol type, or \l QSsl::UnknownProtocol if QSslCipher is unable to determine the protocol (protocolString() may contain more information).
Definition at line 217 of file qsslcipher.cpp.
QString QSslCipher::protocolString | ( | ) | const |
Returns the cipher's protocol as a QString.
Definition at line 205 of file qsslcipher.cpp.
int QSslCipher::supportedBits | ( | ) | const |
Returns the number of bits supported by the cipher.
Definition at line 161 of file qsslcipher.cpp.
|
inlinenoexcept |
Definition at line 33 of file qsslcipher.h.
int QSslCipher::usedBits | ( | ) | const |
Returns the number of bits used by the cipher.
Definition at line 171 of file qsslcipher.cpp.
|
friend |
Definition at line 53 of file qsslcipher.h.