Package org.apache.shiro.crypto.hash
Class Sha512Hash
- 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.Sha512Hash
-
- All Implemented Interfaces:
Serializable,Hash,org.apache.shiro.util.ByteSource
public class Sha512Hash extends SimpleHash
Generates an SHA-512 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 Sha512Hash()Sha512Hash(Object source)Sha512Hash(Object source, Object salt)Sha512Hash(Object source, Object salt, int hashIterations)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Sha512HashfromBase64String(String base64)static Sha512HashfromHexString(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 Sha512Hash fromHexString(String hex)
-
fromBase64String
public static Sha512Hash fromBase64String(String base64)
-
-