C# Class CarrotInc.Amazon.Util.AWSSDKUtils

This class defines utilities and constants that can be used by all the client libraries of the SDK.
Show file Open project: GoCarrotArchive/carrot-unity

Public Methods

Method Description
HMACSign ( string data, System key, KeyedHashAlgorithm algorithm ) : string
HMACSign ( string data, string key, KeyedHashAlgorithm algorithm ) : string

Computes RFC 2104-compliant HMAC signature

Method Details

HMACSign() public static method

public static HMACSign ( string data, System key, KeyedHashAlgorithm algorithm ) : string
data string
key System
algorithm System.Security.Cryptography.KeyedHashAlgorithm
return string

HMACSign() public static method

Computes RFC 2104-compliant HMAC signature
public static HMACSign ( string data, string key, KeyedHashAlgorithm algorithm ) : string
data string The data to be signed
key string The secret signing key
algorithm System.Security.Cryptography.KeyedHashAlgorithm The algorithm to sign the data with
return string