QMaskGenerator¶
The
QMaskGenerator
class provides an abstract base for custom 32-bit mask generators. More…
Detailed Description¶
The WebSockets specification as outlined in RFC 6455 requires that all communication from client to server be masked. This is to prevent malicious scripts from attacking badly behaving proxies. For more information about the importance of good masking, see “Talking to Yourself for Fun and Profit” by Lin-Shung Huang et al . By default
QWebSocket
uses the reasonably secureglobal()
->generate() function. The best measure against attacks mentioned in the document above, is to useQWebSocket
over a secure connection (wss:// ). In general, always be careful to not have 3rd party script access to aQWebSocket
in your application.
- class PySide2.QtWebSockets.QMaskGenerator([parent=None])¶
- param parent:
Creates a new
QMaskGenerator
object with the given optionalQObject
parent
.
- PySide2.QtWebSockets.QMaskGenerator.nextMask()¶
- Return type:
int
Returns a new random 32-bit mask. The randomness depends on the RNG used to created the mask.
- PySide2.QtWebSockets.QMaskGenerator.seed()¶
- Return type:
bool
Initializes the
QMaskGenerator
by seeding the randomizer. When is not called, it depends on the specific implementation of a subclass if a default seed is used or no seed is used at all. Returns true if seeding succeeds, otherwise false.
© 2022 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.