Uses of Interface
org.apache.shiro.authc.credential.CredentialsMatcher
-
Packages that use CredentialsMatcher Package Description org.apache.shiro.authc.credential Support for validating credentials (such as passwords or X509 certificates) during authentication via theCredentialsMatcher
interface and its supporting implementations.org.apache.shiro.realm Components and sub-packages used in supporting the coreRealm
interface. -
-
Uses of CredentialsMatcher in org.apache.shiro.authc.credential
Classes in org.apache.shiro.authc.credential that implement CredentialsMatcher Modifier and Type Class Description class
AllowAllCredentialsMatcher
A credentials matcher that always returnstrue
when matching credentials no matter what arguments are passed in.class
HashedCredentialsMatcher
AHashedCredentialMatcher
provides support for hashing of suppliedAuthenticationToken
credentials before being compared to those in theAuthenticationInfo
from the data store.class
Md2CredentialsMatcher
Deprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmName
property.class
Md5CredentialsMatcher
Deprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmName
property.class
PasswordMatcher
ACredentialsMatcher
that employs best-practices comparisons for hashed text passwords.class
Sha1CredentialsMatcher
Deprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmName
property.class
Sha256CredentialsMatcher
Deprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmName
property.class
Sha384CredentialsMatcher
Deprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmName
property.class
Sha512CredentialsMatcher
Deprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmName
property.class
SimpleCredentialsMatcher
Simple CredentialsMatcher implementation. -
Uses of CredentialsMatcher in org.apache.shiro.realm
Methods in org.apache.shiro.realm that return CredentialsMatcher Modifier and Type Method Description CredentialsMatcher
AuthenticatingRealm. getCredentialsMatcher()
Returns theCredentialsMatcher
used during an authentication attempt to verify submitted credentials with those stored in the system.Methods in org.apache.shiro.realm with parameters of type CredentialsMatcher Modifier and Type Method Description void
AuthenticatingRealm. setCredentialsMatcher(CredentialsMatcher credentialsMatcher)
Sets the CrendialsMatcher used during an authentication attempt to verify submitted credentials with those stored in the system.Constructors in org.apache.shiro.realm with parameters of type CredentialsMatcher Constructor Description AuthenticatingRealm(CredentialsMatcher matcher)
AuthenticatingRealm(org.apache.shiro.cache.CacheManager cacheManager, CredentialsMatcher matcher)
AuthorizingRealm(CredentialsMatcher matcher)
AuthorizingRealm(org.apache.shiro.cache.CacheManager cacheManager, CredentialsMatcher matcher)
-