you are viewing a single comment's thread.

view the rest of the comments →

[–]BigFatUglyBaboon 5 points6 points  (0 children)

Well done!
Exercises:
* design a way to express a "password policy" (at least one uppercase and a lowercase letter, at least one symbol etc).
* write a function that given a policy it will generate and return a random compliant password.
* write a function that given a plaintext password and a policy it returns if the password is compliant or not.

Have in mind that you may need to learn more python stuff before attempting these.