10 lines
177 B
Python
10 lines
177 B
Python
import secrets
|
|
|
|
rndsize = 2**24
|
|
|
|
rndbytes = secrets.token_bytes(rndsize)
|
|
|
|
open('files/data.bin', 'wb').write(rndbytes)
|
|
|
|
print('data.bin generated with size %d bytes' % rndsize)
|