Uses of Enum Class
com.vonage.client.auth.hashutils.HashUtil.HashType
Packages that use HashUtil.HashType
Package
Description
The root of the Vonage client library, containing
VonageClient class, which is probably what
you want.Provides support for the various authentication methods supported by different Vonage APIs.
-
Uses of HashUtil.HashType in com.vonage.client
Methods in com.vonage.client with parameters of type HashUtil.HashTypeModifier and TypeMethodDescriptionVonageClient.Builder.hashType(HashUtil.HashType hashType) Sets the hash type to use for signing requests. -
Uses of HashUtil.HashType in com.vonage.client.auth
Methods in com.vonage.client.auth with parameters of type HashUtil.HashTypeModifier and TypeMethodDescriptionstatic voidRequestSigning.constructSignatureForRequestParameters(List<org.apache.http.NameValuePair> params, String secretKey, HashUtil.HashType hashType) Deprecated.static voidRequestSigning.constructSignatureForRequestParameters(Map<String, String> params, String secretKey, HashUtil.HashType hashType) RequestSigning.getSignatureForRequestParameters(Map<String, String> params, String secretKey, HashUtil.HashType hashType) Signs a set of request parameters.Constructors in com.vonage.client.auth with parameters of type HashUtil.HashTypeModifierConstructorDescriptionAuthCollection(UUID applicationId, byte[] privateKeyContents, String key, String secret, HashUtil.HashType hashType, String signature) SignatureAuthMethod(String apiKey, String sigSecret, HashUtil.HashType hashType) -
Uses of HashUtil.HashType in com.vonage.client.auth.hashutils
Methods in com.vonage.client.auth.hashutils that return HashUtil.HashTypeModifier and TypeMethodDescriptionstatic HashUtil.HashTypeReturns the enum constant of this class with the specified name.static HashUtil.HashType[]HashUtil.HashType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.vonage.client.auth.hashutils with parameters of type HashUtil.HashTypeModifier and TypeMethodDescriptionstatic StringHashUtil.calculate(String input, HashUtil.HashType hashType) Deprecated.This will be removed in the next major release.static StringHashUtil.calculate(String input, String encoding, HashUtil.HashType hashType) Deprecated.This will be removed in the next major release.static StringHashUtil.calculate(String input, String secretKey, String encoding, HashUtil.HashType hashType) Calculates hash for string.
RequestSigning.constructSignatureForRequestParameters(Map, String, HashUtil.HashType).