Home
last modified time | relevance | path

Searched refs:SystemRandom (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Lib/
Dsecrets.py19 from random import SystemRandom
21 _sysrand = SystemRandom()
Dcrypt.py15 from random import SystemRandom as _SystemRandom
Drandom.py813 class SystemRandom(Random): class
/third_party/node/deps/v8/tools/testrunner/utils/
Drandom_utils.py12 seed = random.SystemRandom().randint(-2147483648, 2147483647)
/third_party/cef/tools/cefbuilds/
Dcef_json_builder_example.py28 return ''.join(random.SystemRandom().choice('abcdef' + string.digits)
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/tools/
Drun_one.py48 seed = random.SystemRandom().randint(-2147483648, 2147483647)
/third_party/python/Doc/library/
Dsecrets.rst39 .. class:: SystemRandom
43 :class:`random.SystemRandom` for additional details.
Drandom.rst42 The :mod:`random` module also provides the :class:`SystemRandom` class which
386 .. class:: SystemRandom([seed])
Dos.rst4894 platform, please see :class:`random.SystemRandom`.
/third_party/python/Lib/test/
Dtest_random.py441 random.SystemRandom().random()
449 gen = random.SystemRandom()