Uses of Class
software.amazon.awssdk.auth.signer.internal.SigningAlgorithm
-
Packages that use SigningAlgorithm Package Description software.amazon.awssdk.auth.signer.internal -
-
Uses of SigningAlgorithm in software.amazon.awssdk.auth.signer.internal
Methods in software.amazon.awssdk.auth.signer.internal that return SigningAlgorithm Modifier and Type Method Description static SigningAlgorithm
SigningAlgorithm. valueOf(String name)
Returns the enum constant of this type with the specified name.static SigningAlgorithm[]
SigningAlgorithm. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in software.amazon.awssdk.auth.signer.internal with parameters of type SigningAlgorithm Modifier and Type Method Description protected byte[]
AbstractAwsSigner. sign(byte[] data, byte[] key, SigningAlgorithm algorithm)
protected byte[]
AbstractAwsSigner. sign(String stringData, byte[] key, SigningAlgorithm algorithm)
protected String
AbstractAwsSigner. signAndBase64Encode(String data, String key, SigningAlgorithm algorithm)
Computes an RFC 2104-compliant HMAC signature and returns the result as a Base64 encoded string.
-