Last Updated | | Ratings | | Unique User Downloads | | Download Rankings |
2016-12-04 (16 hours ago) | | Not enough user ratings | | Total: 79 This week: 14 | | All time: 420 This week: 5 |
|
Description | | Author |
This object can calculate and display the strength of a password.
It can listen to changes in a given form password input.
When the user enters a new password, the object calculates a factor that determines the strength of the password based om given requirements and displays messages to let the user know about the password quality.
The object can consider requirements like length of typed characters, upper and lower case characters, digits and special characters.
The message templates can be changed to support other languages. The output of the messages can be customized with CSS. It also allows changing the requirements for a check, as well the weights for scoring. Innovation Award
October 2016
Winner |
When a user enters a password on a site, it is often useful to let him know how easy it may be to guess that password, so the user enters a better one.
This object can show the strength of a given password as the user enters it on a form input.
It can configure the strength parameters based on the number of letters, digits and punctuation that the user entered.
Manuel Lemos |
| |
|
|
Innovation award
Nominee: 1x
Winner: 1x |
|
Details
password check (ahpwcheck.class.js)
about
Javascript class for optical verification of an entered password.
You can define count of required letters, digits and special chars. This
class shows fulfilled requirements while a user types his (new) password.
* Author: Axel Hahn
* project home: <https://github.com/axelhahn/ahpwcheck>
* licence: GNU GPL
* see documentation: <http://www.axel-hahn.de/docs/ahpwcheck/index.htm>
examples
watch a password field and show requirements
var oPwCheck = new ahpwcheck(aOptions);
oPwCheck.watch(
[id of password field],
[id of div for output]
);
Show a score
var oPwCheck = new ahpwcheck(aOptions);
alert(oPwCheck.getScore('My:0815;Password');
see example html files in the package and the section Get started in the documentation:
<http://www.axel-hahn.de/docs/ahpwcheck/get_started.htm>
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.