Skip to content

Commit

Permalink
Merge pull request #31 from branch-slalom/master
Browse files Browse the repository at this point in the history
Update AWS4RequestSigner.cs Sort Comparer
  • Loading branch information
tsibelman authored May 19, 2021
2 parents 15407fa + 832e069 commit 464a21c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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>>(StringComparer.OrdinalIgnoreCase);
var values = new SortedDictionary<string, IEnumerable<string>>(StringComparer.Ordinal);

var querystring = HttpUtility.ParseQueryString(request.RequestUri.Query);
foreach (var key in querystring.AllKeys)
Expand Down
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.2</Version>
<AssemblyVersion>1.0.2.0</AssemblyVersion>
<FileVersion>1.0.2.0</FileVersion>
<Version>1.0.3</Version>
<AssemblyVersion>1.0.3.0</AssemblyVersion>
<FileVersion>1.0.3.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 464a21c

Please sign in to comment.