List of usage examples for org.apache.shiro.authc.credential SimpleCredentialsMatcher subclass-usage
From source file com.blazarquant.bfp.core.security.config.BcryptCredentialsMatcher.java
/** * @author Wojciech Zankowski */ public class BcryptCredentialsMatcher extends SimpleCredentialsMatcher { @Override
From source file com.ikanow.aleph2.security.service.AccountStatusCredentialsMatcher.java
/** * This class checks if the account status is Active. No other Authentication is checked. Used instead of NoCredentialMatcher but limits authentication to active accounts only. * @author jfreydank * */ public class AccountStatusCredentialsMatcher extends SimpleCredentialsMatcher {
From source file com.ikanow.aleph2.security.service.NoCredentialsMatcher.java
public class NoCredentialsMatcher extends SimpleCredentialsMatcher { protected static final Logger logger = LogManager.getLogger(NoCredentialsMatcher.class); /** * This implementation returns true. */
From source file com.ikanow.aleph2.security.shiro.ActiveSessionCredentialMatcher.java
/** * This class checks if the account status is Active. No other Authentication is checked. Used instead of NoCredentialMatcher but limits authentication to active accounts only. * @author jfreydank * */ public class ActiveSessionCredentialMatcher extends SimpleCredentialsMatcher {
From source file com.ikanow.aleph2.security.shiro.DeniedCredentialMatcher.java
/** * This class checks denies authentication.Used only for cases where the session is picked up from the database or other storage. Any direct authentication should fail. * @author jfreydank * */ public class DeniedCredentialMatcher extends SimpleCredentialsMatcher {
From source file com.jeecms.core.security.BbsCredentialsMatcher.java
/**
* A {@code HashedCredentialMatcher} provides support for hashing of supplied {@code AuthenticationToken} credentials
* before being compared to those in the {@code AuthenticationInfo} from the data store.
* <p/>
* Credential hashing is one of the most common security techniques when safeguarding a user's private credentials
* (passwords, keys, etc). Most developers never want to store their users' credentials in plain form, viewable by
From source file com.parallax.server.blocklyprop.security.CloudSessionCredentialsMatcher.java
/** * * @author Michel */ public class CloudSessionCredentialsMatcher extends SimpleCredentialsMatcher {
From source file com.webarch.common.shiro.authentication.CredentialsMatcher.java
/**
* functional describe:??,?MD5
* {@see org.apache.commons.codec.digest.DigestUtils.md5Hex(String data)}
* ?
*
* @author DR.YangLong [410357434@163.com]
From source file com.webarch.common.shiro.DrCredentialsMatcher.java
/**
* functional describe:????????
*
* @author DR.YangLong [410357434@163.com]
* @version 1.0 2015/6/22 9:54
*/
From source file me.buom.shiro.authc.credential.HmacCredentialsMatcher.java
/** * Created by buom on 1/7/14. */ public class HmacCredentialsMatcher extends SimpleCredentialsMatcher { private static Logger log = LoggerFactory.getLogger(HmacCredentialsMatcher.class);