Home
last modified time | relevance | path

Searched refs:_urandom (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
Drandom.py47 from os import urandom as _urandom unknown
115 a = long(_hexlify(_urandom(2500)), 16)
677 a = long(_hexlify(_urandom(16)), 16)
817 return (long(_hexlify(_urandom(7)), 16) >> 3) * RECIP_BPF
826 x = long(_hexlify(_urandom(bytes)), 16)
/external/python/cpython3/Lib/
Drandom.py44 from os import urandom as _urandom unknown
679 return (int.from_bytes(_urandom(7), 'big') >> 3) * RECIP_BPF
688 x = int.from_bytes(_urandom(numbytes), 'big')