private string Hash()

in src/SigV4RequestSigner.cs [44:48]


        private string Hash(byte[] bytesToHash)
        {
            var result = _sha256.ComputeHash(bytesToHash);
            return ToHexString(result);
        }