QRandomGenerator¶

PyQt5.QtCore.QRandomGenerator

Description¶

The QRandomGenerator class allows one to obtain random values from a high-quality Random Number Generator.

QRandomGenerator may be used to generate random values from a high-quality random number generator. Like the C++ random engines, QRandomGenerator can be seeded with user-provided values through the constructor. When seeded, the sequence of numbers generated by this class is deterministic. That is to say, given the same seed data, QRandomGenerator will generate the same sequence of numbers. But given different seeds, the results should be considerably different.

securelySeeded() can be used to create a QRandomGenerator that is securely seeded with QRandomGenerator::system(), meaning that the sequence of numbers it generates cannot be easily predicted. Additionally, QRandomGenerator::global() returns a global instance of QRandomGenerator that Qt will ensure to be securely seeded. This object is thread-safe, may be shared for most uses, and is always seeded from QRandomGenerator::system()

QRandomGenerator::system() may be used to access the system’s cryptographically-safe random generator. On Unix systems, it’s equivalent to reading from /dev/urandom or the getrandom() or getentropy() system calls.

The class can generate 32-bit or 64-bit quantities, or fill an array of those. The most common way of generating new values is to call the generate(), generate64() or fillRange() functions. One would use it as:

#     quint32 value = QRandomGenerator::global()->generate();

Additionally, it provides a floating-point function generateDouble() that returns a number in the range [0, 1) (that is, inclusive of zero and exclusive of 1). There’s also a set of convenience functions that facilitate obtaining a random number in a bounded, integral range.

Seeding and determinism¶

QRandomGenerator may be seeded with specific seed data. When that is done, the numbers generated by the object will always be the same, as in the following example:

#     QRandomGenerator prng1(1234), prng2(1234);
#     Q_ASSERT(prng1.generate() == prng2.generate());
#     Q_ASSERT(prng1.generate64() == prng2.generate64());

The seed data takes the form of one or more 32-bit words. The ideal seed size is approximately equal to the size of the QRandomGenerator class itself. Due to mixing of the seed data, QRandomGenerator cannot guarantee that distinct seeds will produce different sequences.

QRandomGenerator::global(), like all generators created by securelySeeded(), is always seeded from QRandomGenerator::system(), so it’s not possible to make it produce identical sequences.

Bulk data¶

When operating in deterministic mode, QRandomGenerator may be used for bulk data generation. In fact, applications that do not need cryptographically-secure or true random data are advised to use a regular QRandomGenerator instead of QRandomGenerator::system() for their random data needs.

For ease of use, QRandomGenerator provides a global object that can be easily used, as in the following example:

#     int x = QRandomGenerator::global()->generate();
#     int y = QRandomGenerator::global()->generate();
#     int w = QRandomGenerator::global()->bounded(16384);
#     int h = QRandomGenerator::global()->bounded(16384);

System-wide random number generator¶

QRandomGenerator::system() may be used to access the system-wide random number generator, which is cryptographically-safe on all systems that Qt runs on. This function will use hardware facilities to generate random numbers where available. On such systems, those facilities are true Random Number Generators. However, if they are true RNGs, those facilities have finite entropy sources and thus may fail to produce any results if their entropy pool is exhausted.

If that happens, first the operating system then QRandomGenerator will fall back to Pseudo Random Number Generators of decreasing qualities (Qt’s fallback generator being the simplest). Whether those generators are still of cryptographic quality is implementation-defined. Therefore, QRandomGenerator::system() should not be used for high-frequency random number generation, lest the entropy pool become empty. As a rule of thumb, this class should not be called upon to generate more than a kilobyte per second of random data (note: this may vary from system to system).

If an application needs true RNG data in bulk, it should use the operating system facilities (such as /dev/random on Linux) directly and wait for entropy to become available. If the application requires PRNG engines of cryptographic quality but not of true randomness, QRandomGenerator::system() may still be used (see section below).

If neither a true RNG nor a cryptographically secure PRNG are required, applications should instead use PRNG engines like QRandomGenerator’s deterministic mode and those from the C++ Standard Library. QRandomGenerator::system() can be used to seed those.

Fallback quality¶

QRandomGenerator::system() uses the operating system facilities to obtain random numbers, which attempt to collect real entropy from the surrounding environment to produce true random numbers. However, it’s possible that the entropy pool becomes exhausted, in which case the operating system will fall back to a pseudo-random engine for a time. Under no circumstances will QRandomGenerator::system() block, waiting for more entropy to be collected.

The following operating systems guarantee that the results from their random-generation API will be of at least cryptographically-safe quality, even if the entropy pool is exhausted: Apple OSes (Darwin), BSDs, Linux, Windows. Barring a system installation problem (such as /dev/urandom not being readable by the current process), QRandomGenerator::system() will therefore have the same guarantees.

On other operating systems, QRandomGenerator will fall back to a PRNG of good numeric distribution, but it cannot guarantee proper seeding in all cases. Please consult the OS documentation for more information.

Applications that require QRandomGenerator not to fall back to non-cryptographic quality generators are advised to check their operating system documentation or restrict their deployment to one of the above.

Reentrancy and thread-safety¶

QRandomGenerator is reentrant, meaning that multiple threads can operate on this class at the same time, so long as they operate on different objects. If multiple threads need to share one PRNG sequence, external locking by a mutex is required.

The exceptions are the objects returned by QRandomGenerator::global() and QRandomGenerator::system(): those objects are thread-safe and may be used by any thread without external locking. Note that thread-safety does not extend to copying those objects: they should always be used by reference.

Standard C++ Library compatibility¶

QRandomGenerator is modeled after the requirements for random number engines in the C++ Standard Library and may be used in almost all contexts that the Standard Library engines can. Exceptions to the requirements are the following:

  • QRandomGenerator does not support seeding from another seed sequence-like class besides std::seed_seq itself;

  • QRandomGenerator is not comparable (but is copyable) or streamable to std::ostream or from std::istream.

QRandomGenerator is also compatible with the uniform distribution classes std::uniform_int_distribution and std:uniform_real_distribution, as well as the free function std::generate_canonical. For example, the following code may be used to generate a floating-point number in the range [1, 2.5):

#     std::uniform_real_distribution dist(1, 2.5);
#     return dist(*QRandomGenerator::global());

See also

QRandomGenerator64.

Methods¶

__init__(seed: int = 1)

TODO


__init__(QRandomGenerator)

TODO


bounded(float) → float

TODO


bounded(int) → int

TODO


bounded(int, int) → int

TODO


__call__() → int

TODO


discard(int)

TODO


__eq__(QRandomGenerator) → bool

TODO


generate() → int

TODO


generate64() → int

TODO


generateDouble() → float

TODO


@staticmethod
global_() → QRandomGenerator

TODO


@staticmethod
max() → int

TODO


@staticmethod
min() → int

TODO


__ne__(QRandomGenerator) → bool

TODO


@staticmethod
securelySeeded() → QRandomGenerator

TODO


seed(seed: int = 1)

TODO


@staticmethod
system() → QRandomGenerator

TODO