**Hi all fort i would leave a little keygen/passphase maker for anyone that wants one **
Also would like feed back on it maybe someone could help inprove or some ideas to improve plus to get this to work you have to make a file called Data make shore caps D. in the Data file is where the keys generated will go so here it is:
#!/usr/bin/python
import string
import random
data = open(r'Data')
lines = data.readlines()
data.close()
data = open(r'Data', 'w')
print "Generating random keys from uppercase"
print "and lowercase with numbers..."
print "Please close terminal with the x button"
print "top right of terminal as this is on a loop."
print "\n \n WARNING may generate the same key twice WARNING \n"
t = raw_input("Enter char length :")
a = int(t)
raw_input("If You Wish To Continue Press Any Key.....")
print "\n \n \n Generating........"
x = 1
while True:
def lowerchar(size=a,chars=string.ascii_lowercase + string.digits):
return ''.join(random.choice(chars) for x in range(size))
def upperchar(size=a,chars=string.ascii_uppercase + string.digits):
return ''.join(random.choice(chars) for x in range(size))
def allchar(size=a,chars=string.ascii_uppercase+string.ascii_lowercase + string.digits):
return ''.join(random.choice(chars) for x in range(size))
lines[+0] = lowerchar()+"\n"+upperchar()+"\n"+allchar()+"\n"
data.writelines(lines)
x += 1
I hope this could help or be of use to any one comment n let me know.