Uses of Enum Class
org.frankframework.extensions.akamai.NetStorageUtils.KeyedHashAlgorithm
Packages that use NetStorageUtils.KeyedHashAlgorithm
-
Uses of NetStorageUtils.KeyedHashAlgorithm in org.frankframework.extensions.akamai
Subclasses with type arguments of type NetStorageUtils.KeyedHashAlgorithm in org.frankframework.extensions.akamaiModifier and TypeClassDescriptionstatic enumAn enum of the keyed-hash algorithms supported byNetStorageUtils.computeKeyedHash(byte[], String, NetStorageUtils.KeyedHashAlgorithm)Currently supported hashes include HMAC-MD5; HMAC-SHA1; HMAC-SHA256 The string representation matches the javaMac.getInstance(String)cononical names.Methods in org.frankframework.extensions.akamai that return NetStorageUtils.KeyedHashAlgorithmModifier and TypeMethodDescriptionNetStorageCmsSigner.SignType.getAlgorithm()Returns the enum constant of this class with the specified name.static NetStorageUtils.KeyedHashAlgorithm[]NetStorageUtils.KeyedHashAlgorithm.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.frankframework.extensions.akamai with parameters of type NetStorageUtils.KeyedHashAlgorithmModifier and TypeMethodDescriptionstatic byte[]NetStorageUtils.computeKeyedHash(byte @NonNull [] data, String key, NetStorageUtils.KeyedHashAlgorithm hashType) Computes the HMAC hash of a given byte[].