Uses of Class
org.apache.shiro.crypto.hash.AbstractHash

Packages that use AbstractHash
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 AbstractHash in org.apache.shiro.authc.credential
 

Methods in org.apache.shiro.authc.credential that return AbstractHash
protected  AbstractHash Sha512CredentialsMatcher.newHashInstance()
          Creates a new uninitialized Sha512Hash instance, without it's byte array set.
protected  AbstractHash Sha384CredentialsMatcher.newHashInstance()
          Creates a new uninitialized Sha384Hash instance, without it's byte array set.
protected  AbstractHash Sha256CredentialsMatcher.newHashInstance()
          Creates a new uninitialized Sha256Hash instance, without it's byte array set.
protected  AbstractHash Sha1CredentialsMatcher.newHashInstance()
          Creates a new uninitialized Sha1Hash instance, without it's byte array set.
protected  AbstractHash Md5CredentialsMatcher.newHashInstance()
          Creates a new uninitialized Md5Hash instance, without it's byte array set.
protected  AbstractHash Md2CredentialsMatcher.newHashInstance()
          Creates a new uninitialized Md2Hash instance, without it's byte array set.
protected abstract  AbstractHash HashedCredentialsMatcher.newHashInstance()
          Returns a new, uninitialized instance, without its byte array set.
 

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

Subclasses of AbstractHash in org.apache.shiro.crypto.hash
 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.