Uses of Enum Class
org.seppiko.commons.utils.crypto.HmacAlgorithms
Packages that use HmacAlgorithms
-
Uses of HmacAlgorithms in org.seppiko.commons.utils.crypto
Methods in org.seppiko.commons.utils.crypto that return HmacAlgorithmsModifier and TypeMethodDescriptionstatic HmacAlgorithmsReturns the enum constant of this class with the specified name.static HmacAlgorithms[]HmacAlgorithms.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.seppiko.commons.utils.crypto with parameters of type HmacAlgorithmsModifier and TypeMethodDescriptionstatic byte[]HashUtil.hmacHash(HmacAlgorithms algorithm, Provider provider, byte[] data, byte[] key) Simplifies commonMactasks.static StringHashUtil.hmacHashString(HmacAlgorithms algorithm, Provider provider, byte[] data, byte[] key) Simplifies commonMactasks.static byte[]HashUtil.pbkdf2Hash(HmacAlgorithms algorithm, Provider provider, char[] password, byte[] salt, int iterations, int keySize) Simplifies common PBKDF2 tasksstatic StringHashUtil.pbkdf2HashString(HmacAlgorithms algorithm, Provider provider, char[] password, byte[] salt, int iterations, int keySize) Simplifies common PBKDF2 tasks