Uses of Enum
org.apache.commons.codec.digest.HmacAlgorithms
Packages that use HmacAlgorithms
Package
Description
Simplifies common
MessageDigest tasks and includes a libc crypt(3) compatible crypt method that supports DES, MD5, SHA-256 and SHA-512
based algorithms as well as the Apache specific "$apr1$" variant.-
Uses of HmacAlgorithms in org.apache.commons.codec.digest
Subclasses with type arguments of type HmacAlgorithms in org.apache.commons.codec.digestModifier and TypeClassDescriptionenumStandardHmacUtilsalgorithm names from the Java Cryptography Architecture Standard Algorithm Name Documentation.Methods in org.apache.commons.codec.digest that return HmacAlgorithmsModifier and TypeMethodDescriptionstatic HmacAlgorithmsReturns the enum constant of this type with the specified name.static HmacAlgorithms[]HmacAlgorithms.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.codec.digest with parameters of type HmacAlgorithmsModifier and TypeMethodDescriptionstatic MacHmacUtils.getInitializedMac(HmacAlgorithms algorithm, byte[] key) Returns an initializedMacfor the givenalgorithm.static booleanHmacUtils.isAvailable(HmacAlgorithms name) Returns whether this algorithm is availableConstructors in org.apache.commons.codec.digest with parameters of type HmacAlgorithmsModifierConstructorDescriptionHmacUtils(HmacAlgorithms algorithm, byte[] key) Creates an instance using the provided algorithm type.HmacUtils(HmacAlgorithms algorithm, String key) Creates an instance using the provided algorithm type.