A Javascript password generator
Download: Javascript Password Generator 1.1
This is a demonstration of a javascript based password generator with character exclusion. The random number based generation algorithm can generate a password of specified length but defaults to eight characters if not specified.
Demo
Push the generate button to fill the password box with randomly generated characters. Notice that it doesn't allow characters that can be somewhat ambiguous (ex.: l,I,O,0).
Code Examaple
<script language="javascript" type="text/javascript" src="/js/passwordGenerator.js"></script> <form> <label for="password">Password</label> <input type="text" name="password" id="password" /> <input type="button" onclick="this.form.password.value=makePass(16);" value="Generate Password" /> </form>