views:

51

answers:

1

I need to implement minimum password complexity checking in a Java web application (Spring/Hibernate). It seems that on Linux I could use pam_cracklib, but is there a pure Java alternative?

+1  A: 

There is PasswordCheck, a pure java password strengh checker. It's configurable so you can define what a strong password should look like, but documentation seems a bit lacking.

mdma
I saw that library, but it doesn't appear to be documented or have any kind of license. Do you know where I might be able to find more information?
Matt Pfefferle