|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Objectorg.jasypt.util.password.rfc2307.RFC2307SHAPasswordEncryptor
public final class RFC2307SHAPasswordEncryptor
Utility class for easily performing password digesting and checking according to {SHA}, a password encryption scheme defined in RFC2307 and commonly found in LDAP systems.
This class internally holds a StandardStringDigester
configured this way:
This class is thread-safe
| Constructor Summary | |
|---|---|
RFC2307SHAPasswordEncryptor()
Creates a new instance of RFC2307SHAPasswordEncryptor |
|
| Method Summary | |
|---|---|
boolean |
checkPassword(String plainPassword,
String encryptedPassword)
Checks an unencrypted (plain) password against an encrypted one (a digest) to see if they match. |
String |
encryptPassword(String password)
Encrypts (digests) a password. |
void |
setStringOutputType(String stringOutputType)
Sets the the form in which String output will be encoded. |
| Methods inherited from class Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public RFC2307SHAPasswordEncryptor()
| Method Detail |
|---|
public void setStringOutputType(String stringOutputType)
Sets the the form in which String output will be encoded. Available encoding types are:
stringOutputType - the string output type.public String encryptPassword(String password)
encryptPassword in interface PasswordEncryptorpassword - the password to be encrypted.
StandardStringDigester.digest(String)
public boolean checkPassword(String plainPassword,
String encryptedPassword)
checkPassword in interface PasswordEncryptorplainPassword - the plain password to check.encryptedPassword - the digest against which to check the password.
StandardStringDigester.matches(String, String)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||