Class | Description |
---|---|
PasswordEncoder |
This class implements the Spring Security 3.x
org.springframework.security.authentication.encoding.PasswordEncoder
interface, allowing Spring Security-enabled applications to use JASYPT
for password encryption.
|
PBEPasswordEncoder |
This class implements the Spring Security 3.x
org.springframework.security.providers.encoding.PasswordEncoder
interface, allowing Spring Security-enabled applications to use JASYPT
for password encryption.
|
TokenBasedRememberMeServices |
Implementation of org.springframework.security.web.authentication.rememberme.AbstractRememberMeServices
which provides a "remember-me" cookie arranged in the same way as
org.springframework.security.web.authentication.rememberme.TokenBasedRememberMeServices, but using a
Jasypt
StringDigester passed as a parameter for performing the digest of the signature in the cookie
(username + ":" + expiry time + ":" + password + ":" + key). |
Copyright © 2015 The JASYPT team. All rights reserved.