QSslKeyingMaterial Class
Describes exported keying material derived from a TLS session. More...
| Header: | #include <QSslKeyingMaterial> |
| CMake: | find_package(Qt6 REQUIRED COMPONENTS Network)target_link_libraries(mytarget PRIVATE Qt6::Network) |
| qmake: | QT += network |
| Since: | Qt 6.12 |
| Status: | Technology preview |
This class is in technology preview and is subject to change.
- List of all members, including inherited members
- QSslKeyingMaterial is part of Network Programming API.
Note: All functions in this class are reentrant.
QSslKeyingMaterial Comparisons
| Category | Comparable Types |
|---|---|
| equality | QSslKeyingMaterial |
Public Functions
| QSslKeyingMaterial() | |
| QSslKeyingMaterial(const QByteArray &label, qsizetype size) | |
| QSslKeyingMaterial(const QByteArray &label, qsizetype size, const QByteArray &context) | |
| QSslKeyingMaterial | clone() const |
| QByteArray | context() const |
| bool | isValid() const |
| QByteArray | label() const |
| qsizetype | requestedSize() const |
| void | swap(QSslKeyingMaterial &other) |
| QByteArray | value() const |
Related Non-Members
| size_t | qHash(const QSslKeyingMaterial &key) |
| size_t | qHash(const QSslKeyingMaterial &key, size_t seed) |
| QDebug | operator<<(QDebug debug, const QSslKeyingMaterial &keying) |
Detailed Description
QSslKeyingMaterial represents a request for keying material derived from an established TLS connection using the TLS exporter mechanism.
The exporter mechanism is defined in RFC 5705 for TLS 1.2 and earlier and in RFC 8446 for TLS 1.3. It allows applications to derive cryptographically separate keying material from the TLS session without exposing the session's traffic keys.
Each QSslKeyingMaterial object specifies:
- an exporter label identifying the purpose of the derived keying material
- an optional context value binding the keying material to application-specific data
- the desired size of the exported keying material
The actual keying material is derived by the TLS backend after a successful handshake and can be read with value().
QSslKeyingMaterial objects are typically configured via QSslConfiguration::setKeyingMaterial() before initiating a TLS connection.
Example: Deterministic export on client and server
// Both client and server configure the same label and optional context
QSslKeyingMaterial keying("session-label", 32, "app-specific-context");
// After the TLS handshake completes get data from QSslConfiguration.
QByteArray derived = sslConfiguration().takeKeyingMaterial(keying)->value();
// Both client and server will obtain the same 'derived' bytes
// even though they each performed the derivation independently.
use(derived);Security Considerations
Exported keying material is a secret. QByteArray is a copy-on-write container, so every QSslKeyingMaterial object holding a value shares one buffer, and the secret remains in memory for as long as any of those objects lives. An application that needs to guarantee it holds the only remaining reference must release the Qt-internal ones explicitly.
After a successful handshake the value lives in exactly one place inside Qt: the QSslKeyingMaterial entry in the socket's internal QSslConfiguration. Each QSslConfiguration returned by QSslSocket::sslConfiguration() is an independent copy of that configuration, sharing the value's buffer with it.
Both QSslConfiguration::takeKeyingMaterial() overloads hand the values over instead of sharing them: what they return holds the only reference to the value, and the entries they leave behind in the configuration they were called on are valueless clones. Copy the value out of the returned object with value() and let the object itself go out of scope, then write the configuration back to the socket: that overwrites the socket's entry with the valueless one, dropping the last reference Qt holds.
QSslConfiguration config = socket->sslConfiguration();
// Copy the value out of the temporary that owns it, and let it die:
QByteArray secret = config.takeKeyingMaterial(request)->value();
// Overwrite the socket's copy with the entry left behind, which has no value:
socket->setSslConfiguration(config);The following copies are outside the socket's control and must be dealt with separately:
- Any other QSslConfiguration copy the application still holds, including one stored in a QNetworkRequest or installed with QSslConfiguration::setDefaultConfiguration(). Taking the value from one copy does not affect the others.
- A configuration that was never written back to the socket. Taking the values out of a QSslConfiguration only strips that copy of the configuration; the socket keeps its own until it is given the valueless entries.
- Any QSslKeyingMaterial copy the application made itself. Use clone() when a copy of a request is needed without its value.
The socket also drops the values when it starts a new handshake, because its entries are reset to valueless clones then, and when it is destroyed. Neither replaces the explicit step above for a socket that stays alive.
Member Function Documentation
QSslKeyingMaterial::QSslKeyingMaterial()
Default-constructs an instance of QSslKeyingMaterial.
A default instance is never valid.
See also isValid().
[explicit] QSslKeyingMaterial::QSslKeyingMaterial(const QByteArray &label, qsizetype size)
[explicit] QSslKeyingMaterial::QSslKeyingMaterial(const QByteArray &label, qsizetype size, const QByteArray &context)
Constructs a QSslKeyingMaterial object with the given exporter label, output size, and optional context.
The label identifies the purpose of the exported keying material and must be non-empty. The size specifies the number of bytes to be derived from the TLS exporter.
The optional context is application-defined data that is mixed into the key derivation process to provide domain separation.
The keying material itself is not generated until a TLS handshake has completed successfully.
Note: Under TLS 1.2 (RFC 5705), a null context and an empty (non-null) context produce different keying material: the context length field is omitted entirely when no context is present, yielding a different PRF input. Under TLS 1.3 (RFC 8446), an absent context and an empty context are defined to be equivalent and produce the same keying material. Use QByteArray::isNull() to distinguish them.
See also isValid(), label(), context(), and value().
QSslKeyingMaterial QSslKeyingMaterial::clone() const
Returns a copy of this keying material request, without its value().
The returned object carries the exporter label(), context() and requestedSize(), so it can be used to request the same keying material again, but its value() is empty. Use it to initialize a copy, or to reset an entry, without carrying the value along.
See also value().
QByteArray QSslKeyingMaterial::context() const
Returns the optional context value used for deriving the keying material.
The context value binds the exported keying material to application-specific data and helps prevent accidental reuse of identical keys across different purposes.
If no context was specified, a null/empty QByteArray is returned (see QSslKeyingMaterial::QSslKeyingMaterial()).
[noexcept] bool QSslKeyingMaterial::isValid() const
Returns true if this QSslKeyingMaterial object describes a valid exporter request.
A QSslKeyingMaterial object is considered valid if it has a non-empty exporter label and a positive output size.
QByteArray QSslKeyingMaterial::label() const
Returns the exporter label used for deriving the keying material.
The label identifies the purpose of the exported keying material and is included verbatim in the TLS exporter derivation.
See also context() and value().
[noexcept] qsizetype QSslKeyingMaterial::requestedSize() const
The desired size of the keying material.
The desired size is the number of bytes the handshake protocol is asked to generate for the purpose described by the label() and context() of the requested keying material.
See also value().
[noexcept] void QSslKeyingMaterial::swap(QSslKeyingMaterial &other)
Swaps this keying material with other. This operation is very fast and never fails.
QByteArray QSslKeyingMaterial::value() const
Returns the exported keying material.
The returned QByteArray contains the keying material derived from the TLS session using the configured exporter label and context.
If the TLS handshake has not completed successfully or if the TLS backend does not support key exporters, this function returns an empty value.
Note: The contents of the returned keying material are security-sensitive and must be handled with care. See Security Considerations for how to keep the returned QByteArray the only copy of it.
See also label(), context(), and requestedSize().
Related Non-Members
[noexcept] size_t qHash(const QSslKeyingMaterial &key)
[noexcept] size_t qHash(const QSslKeyingMaterial &key, size_t seed)
Returns the hash value for key, using seed to seed the calculation.
QDebug operator<<(QDebug debug, const QSslKeyingMaterial &keying)
Writes a textual representation of the keying material keying to the debug object debug.
See also Debugging Techniques.
© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.