Uses of Class
org.apache.shiro.codec.CodecSupport
-
Packages that use CodecSupport 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.crypto.hash Cryptographic Hashing components that greatly simplify one-way data hashing in an application. -
-
Uses of CodecSupport in org.apache.shiro.authc.credential
Subclasses of CodecSupport in org.apache.shiro.authc.credential Modifier and Type Class Description 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
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 CodecSupport in org.apache.shiro.crypto.hash
Subclasses of CodecSupport in org.apache.shiro.crypto.hash Modifier and Type Class Description class
AbstractHash
Deprecated.in Shiro 1.1 in favor of using the concreteSimpleHash
implementation directly.class
Md2Hash
Generates an MD2 Hash (RFC 1319) from a given input source with an optional salt and hash iterations.class
Md5Hash
Generates an MD5 Hash (RFC 1321) from a given input source with an optional salt and hash iterations.class
Sha1Hash
Generates an SHA-1 Hash (Secure Hash Standard, NIST FIPS 180-1) from a given input source with an optional salt and hash iterations.class
Sha256Hash
Generates an SHA-256 Hash from a given input source with an optional salt and hash iterations.class
Sha384Hash
Generates an SHA-384 Hash from a given input source with an optional salt and hash iterations.class
Sha512Hash
Generates an SHA-512 Hash from a given input source with an optional salt and hash iterations.class
SimpleHash
AHash
implementation that allows anyMessageDigest
algorithm name to be used.
-