ulid icon indicating copy to clipboard operation
ulid copied to clipboard

Use rand.randbytes() instead of os.urandom()

Open socketpair opened this issue 8 months ago • 4 comments

[mmarkk@asus home]$ python -m timeit -s 'import random' 'random.randbytes(8)'
5000000 loops, best of 5: 93.9 nsec per loop
[mmarkk@asus home]$ python -m timeit -s 'import os' 'os.urandom(8)'
1000000 loops, best of 5: 248 nsec per loop

socketpair avatar Nov 02 '23 06:11 socketpair