Skip to content

Commit

Permalink
Merge pull request #29 from branch-slalom/master
Browse files Browse the repository at this point in the history
Update AWS4RequestSigner.cs
  • Loading branch information
tsibelman authored Apr 8, 2021
2 parents 1069f74 + 3f9f94e commit 15407fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Aws4Signer/AWS4RequestSigner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public async Task<HttpRequestMessage> Sign(HttpRequestMessage request, string se

private static string GetCanonicalQueryParams(HttpRequestMessage request)
{
var values = new SortedDictionary<string, IEnumerable<string>>();
var values = new SortedDictionary<string, IEnumerable<string>>(StringComparer.OrdinalIgnoreCase);

var querystring = HttpUtility.ParseQueryString(request.RequestUri.Query);
foreach (var key in querystring.AllKeys)
Expand Down Expand Up @@ -183,4 +183,4 @@ public void Dispose()
_sha256.Dispose();
}
}
}
}
6 changes: 3 additions & 3 deletions Aws4Signer/Aws4RequestSigner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors />
<Company />
<Version>1.0.1</Version>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
<Version>1.0.2</Version>
<AssemblyVersion>1.0.2.0</AssemblyVersion>
<FileVersion>1.0.2.0</FileVersion>
<PackageLicenseUrl>https://github.com/tsibelman/aws-signer-v4-dot-net/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/tsibelman/aws-signer-v4-dot-net</PackageProjectUrl>
<PackageIconUrl></PackageIconUrl>
Expand Down

0 comments on commit 15407fa

Please sign in to comment.