Serialized Form
-
Package org.apache.shiro.crypto.hash
-
Class org.apache.shiro.crypto.hash.AbstractCryptHash
class AbstractCryptHash extends Object implements Serializable- serialVersionUID:
- 2483214646921027859L
-
Serialized Fields
-
algorithmName
String algorithmName
-
base64Encoded
String base64Encoded
Cached value of thetoBase64()call so multiple calls won't incur repeated overhead. -
hashedData
byte[] hashedData
-
hexEncoded
String hexEncoded
Cached value of thetoHex()call so multiple calls won't incur repeated overhead. -
salt
org.apache.shiro.lang.util.ByteSource salt
-
-
Class org.apache.shiro.crypto.hash.AbstractHash
class AbstractHash extends org.apache.shiro.lang.codec.CodecSupport implements Serializable- serialVersionUID:
- -4723044219611288405L
-
Serialized Fields
-
bytes
byte[] bytes
Deprecated.The hashed data
-
-
Class org.apache.shiro.crypto.hash.Sha256Hash
class Sha256Hash extends SimpleHash implements Serializable -
Class org.apache.shiro.crypto.hash.Sha384Hash
class Sha384Hash extends SimpleHash implements Serializable -
Class org.apache.shiro.crypto.hash.Sha512Hash
class Sha512Hash extends SimpleHash implements Serializable -
Class org.apache.shiro.crypto.hash.SimpleHash
class SimpleHash extends AbstractHash implements Serializable- serialVersionUID:
- -6689895264902387303L
-
Serialized Fields
-
algorithmName
String algorithmName
TheMessageDigestalgorithm name to use when performing the hash. -
bytes
byte[] bytes
The hashed data -
iterations
int iterations
Number of hash iterations to perform. Defaults to 1 in the constructor. -
salt
org.apache.shiro.lang.util.ByteSource salt
Supplied salt, if any.
-
-