I'm developing an Android app and one of my tasks is to check the strength of a password.
Are there any built-in functions for checking the strength of a password?
|
I'm developing an Android app and one of my tasks is to check the strength of a password. Are there any built-in functions for checking the strength of a password? |
||||
|
|
Just check out this link. Hope this will help you http://www.codeproject.com/Articles/146085/Model-Validation-Support-in-Android-Binding. |
|||
|
|
|
If you dont't want to use external libs.. you can check it yourself.. Something like this:
|
|||
|
|
Sounds like you need an external library such as http://code.google.com/p/vt-middleware/wiki/vtpassword etc. Or it is simple enough to code up something like checking how long it is, what characters it has etc and printing out different things based on that. If say a user had a 10 length password and some upper case characters you could increment some password strength parameter based on this, rewarding more complex passwords. You can set teh thresholds yourself. |
|||||
|