QMaskGenerator Class
The QMaskGenerator class provides an abstract base for custom 32-bit mask generators. 更多...
头文件: | #include <QMaskGenerator> |
qmake: | QT += websockets |
开始支持版本: | Qt 5.3 |
基类: | QObject |
公有函数
QMaskGenerator(QObject *parent = Q_NULLPTR) | |
virtual | ~QMaskGenerator() |
virtual quint32 | nextMask() = 0 |
virtual bool | seed() = 0 |
- 32 个公有函数继承自 QObject
其他继承的成员
- 1 个属性继承自 QObject
- 1 个公有槽函数继承自 QObject
- 2 个信号继承自 QObject
- 1 个公有变量继承自 QObject
- 10 个静态公有成员继承自 QObject
- 9 个受保护的函数继承自 QObject
- 2 个受保护的变量继承自 QObject
详细描述
The QMaskGenerator class provides an abstract base for custom 32-bit mask generators.
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 cryptographically insecure qrand() function. The best measure against attacks mentioned in the document above, is to use QWebSocket over a secure connection (wss://). In general, always be careful to not have 3rd party script access to a QWebSocket in your application.
成员函数
QMaskGenerator::QMaskGenerator(QObject *parent = Q_NULLPTR)
Creates a new QMaskGenerator object with the given optional QObject parent.
[virtual]
QMaskGenerator::~QMaskGenerator()
Destroys the QMaskGenerator object.
[pure virtual]
quint32 QMaskGenerator::nextMask()
Returns a new random 32-bit mask. The randomness depends on the RNG used to created the mask.
[pure virtual]
bool QMaskGenerator::seed()
Initializes the QMaskGenerator by 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.