Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can anyone recommend a Java library that contains methods that are suitable for performing server-side password strength checking in a webapp. Ideally the checker should be:

  • configurable, allowing the deployer to supply different dictionaries, adjust weights of different criteria, and so on
  • extensible allowing new criteria to be implemented if required
  • implemented in pure Java
  • not fundamentally intertwined with a tag libraries, UI components or "password management" functionality
  • compatible with a GPL 3 project
  • compatible with Spring wiring
  • mavenized (ideally available through Maven Central)
share|improve this question

4 Answers

up vote 33 down vote accepted

Have a look at vt-password:

  • configurable, allowing the deployer to supply different dictionaries, adjust weights of different criteria, and so on - Partially (yes to configurable, dictionaries, no to weighted criteria)
  • extensible allowing new criteria to be implemented if required - Yes
  • implemented in pure Java - Yes (and decent javadoc)
  • not fundamentally intertwined with a tag libraries, UI components or "password management" functionality - Yes
  • compatible with a GPL 3 project - is GPL
  • compatible with Spring wiring - Looks like
  • mavenized (ideally available through Maven Central) - Yes (but not in central)

Update by @Stephen C.

The guys who do vt-password have made a number of API improvements since the question was originally answered, and one of the outcomes is that the classes are much easier to configure using Spring IoC. They have also uploaded it to Maven Central: http://mvnrepository.com/artifact/edu.vt.middleware/vt-password

share|improve this answer
While I do not care about this topic (right now), what a great answer. +1 – Yar Jul 8 '10 at 4:04
Excellent! Thanks! – Stephen C Jul 8 '10 at 4:06
@Stephen: You're welcome. @Daniel: Thanks, glad you find it (potentially) helpful too. – Pascal Thivent Jul 8 '10 at 4:35
A couple of points: 1) The rules are configurable, but there is no direct support for configuring via XML or properties files. 2) The rule objects have mutable state (!?!) and are not thread-safe. 3) Some rules have API impediments to wiring via Spring IoC, and (more important) to copying rules. But I'm going to persevere anyway. – Stephen C Jul 8 '10 at 5:30
@Stephen Interesting feedback, thanks. – Pascal Thivent Jul 9 '10 at 13:44
show 1 more comment

This is a followup answer to say that I did use vt-password, and I'm happy with the results.

I started out with vt-password version 2.0 and hacked it around a bit to get it to work with Spring wiring, and address the thread safety issues I alluded to in my comments on @Pascal's answer. That was enough to get on with.

A few weeks back, the vt-middleware team released vt-password 3.0, based (in small part) on my feedback concerning 2.0. This new release addressed all of the issues I had hacked around, and I have now ditched my local mods and am using vt-password 3.0 as is. They have also uploaded their stuff to Maven Central, and improved the online documentation.

share|improve this answer
how did you manage to use vt-password to calculate password strengths? I don't see anything that would allow you to weight different criteria or get back a "strength" measurement during validation. Or did you drop this requirement? I'm thinking I could run the validation multiple times with different values for the rules and somehow come up with a strength, but that sure seems overkill. – Tauren Feb 15 '11 at 3:43
@Tauren - in fact I dropped this requirement. – Stephen C Feb 15 '11 at 4:19
Oh well, I was hoping you found a simple solution. I've dropped this requirement as well. Maybe I'll address password strength in the future. – Tauren Feb 15 '11 at 7:30

you might find this post usefule - http://stackoverflow.com/questions/75057/what-is-the-best-way-to-check-the-strength-of-a-password

share|improve this answer
Thanks, but I'd already seen that question / answers. And other resources on the web like that. I'm really after a decent existing Java implementation. – Stephen C Jul 8 '10 at 3:07

Unfortunately vt-password doesn't have language capability. I discovered this after many hours of getting it all working with a custom Hibernate validator for a password field in an entity.

For example, here's a message string with two variables:

INSUFFICIENT_CHARACTERS=Password must contain at least %1$s %2$s characters.

This message string can be overridden by supplying the path to a custom properties file, but the problem is that the second variable contains english words such as the word 'uppercase'!

share|improve this answer

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.