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 theCredentialsMatcherinterface and its supporting implementations.org.apache.shiro.realm Components and sub-packages used in supporting the coreRealminterface. -
-
Uses of CredentialsMatcher in org.apache.shiro.authc.credential
Classes in org.apache.shiro.authc.credential that implement CredentialsMatcher Modifier and Type Class Description classAllowAllCredentialsMatcherA credentials matcher that always returnstruewhen matching credentials no matter what arguments are passed in.classHashedCredentialsMatcherAHashedCredentialMatcherprovides support for hashing of suppliedAuthenticationTokencredentials before being compared to those in theAuthenticationInfofrom the data store.classMd2CredentialsMatcherDeprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmNameproperty.classMd5CredentialsMatcherDeprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmNameproperty.classPasswordMatcherACredentialsMatcherthat employs best-practices comparisons for hashed text passwords.classSha1CredentialsMatcherDeprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmNameproperty.classSha256CredentialsMatcherDeprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmNameproperty.classSha384CredentialsMatcherDeprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmNameproperty.classSha512CredentialsMatcherDeprecated.since 1.1 - use the HashedCredentialsMatcher directly and set itshashAlgorithmNameproperty.classSimpleCredentialsMatcherSimple CredentialsMatcher implementation. -
Uses of CredentialsMatcher in org.apache.shiro.realm
Methods in org.apache.shiro.realm that return CredentialsMatcher Modifier and Type Method Description CredentialsMatcherAuthenticatingRealm. getCredentialsMatcher()Returns theCredentialsMatcherused 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 voidAuthenticatingRealm. 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)
-