Revised patch for more password entropy
This commit is contained in:
parent
c3159fefab
commit
9b8fae6158
1 changed files with 2 additions and 0 deletions
|
@ -174,6 +174,8 @@ def randompass():
|
||||||
# we play it safe :)
|
# we play it safe :)
|
||||||
import random
|
import random
|
||||||
import string
|
import string
|
||||||
|
# as of python 2.4, this reseeds the PRNG from urandom
|
||||||
|
random.seed()
|
||||||
lower = ''.join(random.choice(string.ascii_lowercase) for x in range(6))
|
lower = ''.join(random.choice(string.ascii_lowercase) for x in range(6))
|
||||||
upper = ''.join(random.choice(string.ascii_uppercase) for x in range(6))
|
upper = ''.join(random.choice(string.ascii_uppercase) for x in range(6))
|
||||||
number = ''.join(random.choice(string.digits) for x in range(6))
|
number = ''.join(random.choice(string.digits) for x in range(6))
|
||||||
|
|
Loading…
Add table
Reference in a new issue