gitextract_aho6g0tw/ ├── .gitattributes ├── .gitignore ├── HMACAuthentication.Client/ │ ├── App.config │ ├── HMACAuthentication.Client.csproj │ ├── Order.cs │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── packages.config ├── HMACAuthentication.WebApi/ │ ├── App_Start/ │ │ └── WebApiConfig.cs │ ├── Controllers/ │ │ └── OrdersController.cs │ ├── Filters/ │ │ └── HMACAuthenticationAttribute.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── HMACAuthentication.WebApi.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── README.md ├── WebApiHMACAuthentication.sln └── packages/ ├── Microsoft.AspNet.WebApi.5.1.2/ │ └── Microsoft.AspNet.WebApi.5.1.2.nupkg ├── Microsoft.AspNet.WebApi.Client.5.1.2/ │ ├── Microsoft.AspNet.WebApi.Client.5.1.2.nupkg │ └── lib/ │ ├── net45/ │ │ └── System.Net.Http.Formatting.xml │ └── portable-wp8%2Bnetcore45%2Bnet45/ │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Client.5.2.2/ │ ├── Microsoft.AspNet.WebApi.Client.5.2.2.nupkg │ └── lib/ │ ├── net45/ │ │ └── System.Net.Http.Formatting.xml │ └── portable-wp8+netcore45+net45+wp81+wpa81/ │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.5.1.2/ │ ├── Content/ │ │ └── web.config.transform │ ├── Microsoft.AspNet.WebApi.Core.5.1.2.nupkg │ └── lib/ │ └── net45/ │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.WebHost.5.1.2/ │ ├── Microsoft.AspNet.WebApi.WebHost.5.1.2.nupkg │ └── lib/ │ └── net45/ │ └── System.Web.Http.WebHost.xml ├── Newtonsoft.Json.5.0.6/ │ ├── Newtonsoft.Json.5.0.6.nupkg │ └── lib/ │ ├── net20/ │ │ └── Newtonsoft.Json.xml │ ├── net35/ │ │ └── Newtonsoft.Json.xml │ ├── net40/ │ │ └── Newtonsoft.Json.xml │ ├── net45/ │ │ └── Newtonsoft.Json.xml │ ├── netcore45/ │ │ └── Newtonsoft.Json.xml │ ├── portable-net40%2Bsl4%2Bwp7%2Bwin8/ │ │ └── Newtonsoft.Json.xml │ └── portable-net45%2Bwp80%2Bwin8/ │ └── Newtonsoft.Json.xml ├── Newtonsoft.Json.6.0.4/ │ ├── Newtonsoft.Json.6.0.4.nupkg │ ├── lib/ │ │ ├── net20/ │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35/ │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40/ │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45/ │ │ │ └── Newtonsoft.Json.xml │ │ ├── netcore45/ │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+wp80+win8+wpa81/ │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+wp80+win8+wpa81/ │ │ └── Newtonsoft.Json.xml │ └── tools/ │ └── install.ps1 └── repositories.config