This design pattern is part of the Mobile Web Design series.
Contents |
Security remains one of the key desirability of any user, especially when they are interacting with a website that has access to their sensitive information like personal details like images/contacts, or other financial/individual details like credit card number, social security number etc. When designing a website which allows the user to do anything which they would want to protect from non-authorized persons zealously, it becomes very important that you have as many mechanisms as possible to ensure the safety of the user data. One such mechanism to protect the user account from being hacked easily is a password strength meter.
Password strength meter is a visual/textual indication to the user to let them know how strong or weak their entered password is. The strength of a password is checked for a number of parameters with each of them having a rating assigned to them depending upon how tough it makes the password to be cracked by malicious elements. The password strength checker is a possible piece of code, which validates the password and then depending upon the cumulative score the password gets it lets the user know by either showing a bar or a text representation.
Some of the websites/places where you should consider using a password strength meter are:-
Some of the key elements on which the strength of a password can be measured are as follows:-
Based on the above mentioned elements defining a strong/weak password, the strength of the password entered can be tested and displayed to the user.
Some additional resources on how to measure the password strength, with source code and guidelines for a strong password creation can be found at the links below:-
Microsoft Password Strength Checker
From usability standpoints of using a password strength meter are as under:-
The password strength meter not only makes the user data safer and less prone to malicious attack/intrusion, it also gives the user a sense of confidence when conducting business with the site. The user always wants to get some sort of a comfort feeling while sharing their privy information that the latter would be in safe hands. Other security mechanisms should also be considered though as password strength meter is not a sure sought guarantee to safeguarding user data, but surely goes a long way in helping towards meeting that objective.
--- Added by Mayank on 30/06/2009 ---
No related wiki articles found