![]() |
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 21 of file qsslcipher.h.
QSslCipher::QSslCipher | ( | ) |
Constructs an empty QSslCipher object.
Definition at line 41 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 57 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 79 of file qsslcipher.cpp.
QSslCipher::QSslCipher | ( | const QSslCipher & | other | ) |
Constructs an identical copy of the other cipher.
Definition at line 94 of file qsslcipher.cpp.
QSslCipher::~QSslCipher | ( | ) |
Destroys the QSslCipher object.
Definition at line 103 of file qsslcipher.cpp.
QString QSslCipher::authenticationMethod | ( | ) | const |
Returns the cipher's authentication method as a QString.
Definition at line 189 of file qsslcipher.cpp.
QString QSslCipher::encryptionMethod | ( | ) | const |
Returns the cipher's encryption method as a QString.
Definition at line 197 of file qsslcipher.cpp.
bool QSslCipher::isNull | ( | ) | const |
Returns true
if this is a null cipher; otherwise returns false
.
Definition at line 142 of file qsslcipher.cpp.
QString QSslCipher::keyExchangeMethod | ( | ) | const |
Returns the cipher's key exchange method as a QString.
Definition at line 181 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 153 of file qsslcipher.cpp.
|
inline |
Returns true
if this cipher is not the same as other; otherwise, false is returned.
Definition at line 36 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 111 of file qsslcipher.cpp.
|
inlinenoexcept |
Definition at line 28 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 127 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 219 of file qsslcipher.cpp.
QString QSslCipher::protocolString | ( | ) | const |
Returns the cipher's protocol as a QString.
Definition at line 207 of file qsslcipher.cpp.
int QSslCipher::supportedBits | ( | ) | const |
Returns the number of bits supported by the cipher.
Definition at line 163 of file qsslcipher.cpp.
|
inlinenoexcept |
Definition at line 32 of file qsslcipher.h.
int QSslCipher::usedBits | ( | ) | const |
Returns the number of bits used by the cipher.
Definition at line 173 of file qsslcipher.cpp.
|
friend |
Definition at line 52 of file qsslcipher.h.