Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Here is a pretty neat article discussing the subject: tech.dropbox.com/2012/04/… – Jave Dec 19 '12 at 17:02

3 Answers

Just check out this link. Hope this will help you http://www.codeproject.com/Articles/146085/Model-Validation-Support-in-Android-Binding.

share|improve this answer
thnks but this is not exactly what am looking for – jipr311 Dec 20 '12 at 9:52

If you dont't want to use external libs.. you can check it yourself.. Something like this:

   public void onSubmitClicked(View v) 
    { 
        String pass = passwordEditText.getText().toString(); 
        if(TextUtils.isEmpty(pass) || pass.length < [YOUR MIN LENGTH]) 
        { 
            passwordEditText.setError("You must more characters in your password"); 
            return; 
        }
        if(....){
              // do other controls here
        }


    }
share|improve this answer
That is what i was thinking, but what about checking if the password contains special chars? I am looking for a function to do that trying to put apart "for" loops or pre defined String arrays... – jipr311 Dec 19 '12 at 21:36

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.

share|improve this answer
yeah, it could be an external lybrary, or just the classes that I can implemment on my code in another package for example! – jipr311 Dec 19 '12 at 21:37
Yes either is fine, if you want to make it in your own code it is easy to set up regular expressions to test/limit special characters. – Paul Dec 20 '12 at 9:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.