Douglas Royds wrote:
An easy-to-remember form of password is alternate randomly-selected consonants and vowels, e.g. ricinodi. 8 chars made up of 4 consonants and 4 vowels gives 120e6 possibilities, which is rather a lot.
Here's a python program to generate them for you:
#!/usr/bin/env python import random z = random.choice c = "bcdfghjklmnpqrstvwxyz" v = "aeiou" print z(c)+z(v)+z(c)+z(v)+z(c)+z(v)+z(c)+z(v)+z(c)+z(v)
Cheers, Carl.
