Advertisement
opexxx

passgen.py

Dec 16th, 2015
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import os
  2.     import binascii
  3.     BLOCK_SIZE = 32
  4.     secret1 = os.urandom(BLOCK_SIZE)
  5.     secret1 = binascii.hexlify(secret1)
  6.     print secret1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement