PySide6.QtWebSockets.QMaskGenerator¶
- class QMaskGenerator¶
- The - QMaskGeneratorclass provides an abstract base for custom 32-bit mask generators. More…- Synopsis¶- Methods¶- def - __init__()
 - Virtual methods¶- def - nextMask()
- def - seed()
 - Note - This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE - 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 - QWebSocketuses the reasonably secure QRandomGenerator::global()->generate() function. The best measure against attacks mentioned in the document above, is to use- QWebSocketover a secure connection (wss://). In general, always be careful to not have 3rd party script access to a- QWebSocketin your application.- Creates a new - QMaskGeneratorobject with the given optional QObject- parent.- abstract nextMask()¶
- Return type:
- int 
 
 - Returns a new random 32-bit mask. The randomness depends on the RNG used to created the mask. - abstract seed()¶
- Return type:
- bool 
 
 - Initializes the - QMaskGeneratorby seeding the randomizer. When seed() 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.