Package org.apache.shiro.crypto.hash
Class Sha256Hash
- java.lang.Object
-
- org.apache.shiro.codec.CodecSupport
-
- org.apache.shiro.crypto.hash.AbstractHash
-
- org.apache.shiro.crypto.hash.SimpleHash
-
- org.apache.shiro.crypto.hash.Sha256Hash
-
- All Implemented Interfaces:
Serializable,Hash,org.apache.shiro.util.ByteSource
public class Sha256Hash extends SimpleHash
Generates an SHA-256 Hash from a given input source with an optional salt and hash iterations. See theSimpleHashparent class JavaDoc for a detailed explanation of Hashing techniques and how the overloaded constructors function. JDK Version Note - Attempting to instantiate this class on JREs prior to version 1.4.0 will throw anIllegalStateException- Since:
- 0.9
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringALGORITHM_NAME
-
Constructor Summary
Constructors Constructor Description Sha256Hash()Sha256Hash(Object source)Sha256Hash(Object source, Object salt)Sha256Hash(Object source, Object salt, int hashIterations)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Sha256HashfromBase64String(String base64)static Sha256HashfromHexString(String hex)-
Methods inherited from class org.apache.shiro.crypto.hash.SimpleHash
convertSaltToBytes, convertSourceToBytes, equals, getAlgorithmName, getBytes, getDigest, getIterations, getSalt, hash, hash, hash, hashCode, isEmpty, setBytes, setIterations, setSalt, toBase64, toByteSource, toHex, toString
-
-
-
-
Field Detail
-
ALGORITHM_NAME
public static final String ALGORITHM_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
fromHexString
public static Sha256Hash fromHexString(String hex)
-
fromBase64String
public static Sha256Hash fromBase64String(String base64)
-
-