Uses of Class
org.apache.shiro.codec.CodecSupport

Packages that use CodecSupport
org.apache.shiro.authc.credential Support for validating credentials (such as passwords or X509 certificates) during authentication via the CredentialsMatcher 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
 class HashedCredentialsMatcher
          A HashedCredentialMatcher provides support for hashing of supplied AuthenticationToken credentials before being compared to those in the AuthenticationInfo from the data store.
 class Md2CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be MD2 hashed.
 class Md5CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be MD5 hashed.
 class Sha1CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA hashed.
 class Sha256CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA-256 hashed.
 class Sha384CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA-384 hashed.
 class Sha512CredentialsMatcher
          HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA-512 hashed.
 class SimpleCredentialsMatcher
          Simple CredentialsMatcher implementation.
 

Uses of CodecSupport in org.apache.shiro.crypto.hash
 

Subclasses of CodecSupport in org.apache.shiro.crypto.hash
 class AbstractHash
          Provides a base for all Shiro Hash algorithms with support for salts and multiple hash iterations.
 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.
 



Copyright © 2004-2010 The Apache Software Foundation. All Rights Reserved.