Uses of Interface
org.apache.shiro.crypto.hash.Hash
-
Packages that use Hash Package Description org.apache.shiro.crypto.hash Cryptographic Hashing components that greatly simplify one-way data hashing in an application.org.apache.shiro.crypto.hash.format -
-
Uses of Hash in org.apache.shiro.crypto.hash
Classes in org.apache.shiro.crypto.hash that implement Hash Modifier and Type Class Description classAbstractHashDeprecated.in Shiro 1.1 in favor of using the concreteSimpleHashimplementation directly.classMd2HashGenerates an MD2 Hash (RFC 1319) from a given input source with an optional salt and hash iterations.classMd5HashGenerates an MD5 Hash (RFC 1321) from a given input source with an optional salt and hash iterations.classSha1HashGenerates an SHA-1 Hash (Secure Hash Standard, NIST FIPS 180-1) from a given input source with an optional salt and hash iterations.classSha256HashGenerates an SHA-256 Hash from a given input source with an optional salt and hash iterations.classSha384HashGenerates an SHA-384 Hash from a given input source with an optional salt and hash iterations.classSha512HashGenerates an SHA-512 Hash from a given input source with an optional salt and hash iterations.classSimpleHashAHashimplementation that allows anyMessageDigestalgorithm name to be used.Methods in org.apache.shiro.crypto.hash that return Hash Modifier and Type Method Description HashDefaultHashService. computeHash(HashRequest request)Computes and responds with a hash based on the specified request.HashHashService. computeHash(HashRequest request)Computes a hash based on the given request. -
Uses of Hash in org.apache.shiro.crypto.hash.format
Methods in org.apache.shiro.crypto.hash.format that return Hash Modifier and Type Method Description HashParsableHashFormat. parse(String formatted)Parses the specified formatted string and returns the corresponding Hash instance.HashShiro1CryptFormat. parse(String formatted)Methods in org.apache.shiro.crypto.hash.format with parameters of type Hash Modifier and Type Method Description StringBase64Format. format(Hash hash)Returnshash != null ? hash.toBase64() : null.StringHashFormat. format(Hash hash)Returns a formatted string representing the specified Hash instance.StringHexFormat. format(Hash hash)Returnshash != null ? hash.toHex() : null.StringShiro1CryptFormat. format(Hash hash)
-