Popular recipes tagged "policy"http://code.activestate.com/recipes/tags/policy/2008-11-10T01:50:54-08:00ActiveState Code RecipesConfigurable password generator/checker (Python) 2008-11-10T01:50:54-08:00Dario Lopez-Kästenhttp://code.activestate.com/recipes/users/4167913/http://code.activestate.com/recipes/576561-configurable-password-generatorchecker/ <p style="color: grey"> Python recipe 576561 by <a href="/recipes/users/4167913/">Dario Lopez-Kästen</a> (<a href="/recipes/tags/checker/">checker</a>, <a href="/recipes/tags/generator/">generator</a>, <a href="/recipes/tags/pasword/">pasword</a>, <a href="/recipes/tags/policy/">policy</a>). Revision 2. </p> <p>Yet another password generator module. This module contains utility functions for both generating and checking passwords in accordance to a (policy).</p> <p>Default Password Properties Policy:</p> <ul> <li>Minimum Password lenght is 8 tokens</li> <li>At least four unique tokens</li> <li>At least four character tokens</li> <li>At least one number token</li> <li>At least one special character token</li> </ul>