Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import os
- import binascii
- BLOCK_SIZE = 32
- secret1 = os.urandom(BLOCK_SIZE)
- secret1 = binascii.hexlify(secret1)
- print secret1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement