Uses of Enum Class
org.apache.nifi.security.util.crypto.HashAlgorithm
Packages that use HashAlgorithm
-
Uses of HashAlgorithm in org.apache.nifi.security.util.crypto
Methods in org.apache.nifi.security.util.crypto that return HashAlgorithmModifier and TypeMethodDescriptionstatic HashAlgorithmstatic HashAlgorithmReturns the enum constant of this class with the specified name.static HashAlgorithm[]HashAlgorithm.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.nifi.security.util.crypto with parameters of type HashAlgorithmModifier and TypeMethodDescriptionprivate static byte[]HashService.blake2Hash(HashAlgorithm algorithm, byte[] value) private static byte[]HashService.blake2HashStreaming(HashAlgorithm algorithm, InputStream value) static StringHashService.hashValue(HashAlgorithm algorithm, String value) Returns the hex-encoded hash of the specified value.static StringHashService.hashValue(HashAlgorithm algorithm, String value, Charset charset) Returns the hex-encoded hash of the specified value.static byte[]HashService.hashValueRaw(HashAlgorithm algorithm, byte[] value) Returns the rawbyte[]hash of the specified value.static byte[]HashService.hashValueRaw(HashAlgorithm algorithm, String value) Returns the rawbyte[]hash of the specified value.static byte[]HashService.hashValueRaw(HashAlgorithm algorithm, String value, Charset charset) Returns the rawbyte[]hash of the specified value.static StringHashService.hashValueStreaming(HashAlgorithm algorithm, InputStream value) Returns the hash of the specified value.private static byte[]HashService.traditionalHash(HashAlgorithm algorithm, byte[] value) private static byte[]HashService.traditionalHashStreaming(HashAlgorithm algorithm, InputStream value)