9 lines
181 B
Python
9 lines
181 B
Python
import secrets
|
|
|
|
rndsize = 488*50_000
|
|
|
|
rndbytes = secrets.token_bytes(rndsize)
|
|
|
|
open('files/data.bin', 'wb').write(rndbytes)
|
|
|
|
print('data.bin generated with size %d bytes' % rndsize) |