Amazon.Runtime.Internal.Auth.AWS4Signer.ComputeKeyedHash C# (CSharp) Method

ComputeKeyedHash() public static method

Compute and return the hash of a data blob using the specified key
public static ComputeKeyedHash ( SigningAlgorithm algorithm, byte key, byte data ) : byte[]
algorithm SigningAlgorithm Algorithm to use for hashing
key byte Hash key
data byte Data blob
return byte[]
        public static byte[] ComputeKeyedHash(SigningAlgorithm algorithm, byte[] key, byte[] data)
        {
            return CryptoUtilFactory.CryptoInstance.HMACSignBinary(data, key, algorithm);
        }

Same methods

AWS4Signer::ComputeKeyedHash ( SigningAlgorithm algorithm, byte key, string data ) : byte[]