:orphan: .. title:: CONFIG_XOSHIRO_RANDOM_GENERATOR .. kconfig:: CONFIG_XOSHIRO_RANDOM_GENERATOR CONFIG_XOSHIRO_RANDOM_GENERATOR ############################### *Use Xoshiro128++ as PRNG* Type: ``bool`` Help ==== .. code-block:: none Enables the Xoshiro128++ pseudo-random number generator, that uses the entropy driver as a seed source. This is a fast general-purpose non-cryptographically secure random number generator. Direct dependencies =================== \ :kconfig:`ENTROPY_HAS_DRIVER ` && \ :ref:` ` *(Includes any dependencies from ifs and menus.)* Kconfig definition ================== At ``/random/Kconfig:51`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:53`` Menu path: (Top) → Sub Systems and OS Services → Random Number Generators → Random generator .. code-block:: kconfig config XOSHIRO_RANDOM_GENERATOR bool "Use Xoshiro128++ as PRNG" depends on ENTROPY_HAS_DRIVER && help Enables the Xoshiro128++ pseudo-random number generator, that uses the entropy driver as a seed source. This is a fast general-purpose non-cryptographically secure random number generator. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*