-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from mdsol/develop
[MCC-269805] Release of 2.1.0
- release/v5.1.8
- release/v5.1.7
- release/v5.1.6
- release/v5.1.5
- release/v5.1.4
- release/v5.1.3
- release/v5.1.2
- release/v5.1.1
- release/v5.1.0
- release/v5.0.1
- release/v5.0.0
- release/v4.0.2
- release/v4.0.1
- release/v4.0.0
- release/v3.1.2
- release/v3.1.1
- release/v3.1.0
- release/v3.0.4
- release/v3.0.3
- release/v3.0.2
- release/v3.0.1
- release/v3.0.0
- release/v2.4.1
- release/v2.4.0
- release/v2.3.0
- release/v2.2.0
- release/v2.1.1
- release/v2.1.0
Showing
32 changed files
with
282 additions
and
533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"projects": [ "src", "tests" ], | ||
"sdk": { | ||
"version": "1.0.0-preview2-003131" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>c9a9fecb-db5b-40c3-b7cc-f0251853dde6</ProjectGuid> | ||
<RootNamespace>Medidata.MAuth.Core</RootNamespace> | ||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath> | ||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"version": "2.1.0-*", | ||
"title": "Medidata.MAuth.Core", | ||
"authors": [ "Medidata Solutions, Inc." ], | ||
"description": "A core package for Medidata HMAC protocol implementation. This package contains the core functionality which used by the MAuth authentication protocol-specific components. This package also can be used standalone if you want to sign HTTP/HTTPS requests with Medidata MAuth keys using the .NET HttpClient message handler mechanism.", | ||
"copyright": "Copyright © Medidata Solutions, Inc. 2016", | ||
"packOptions": { | ||
"owners": [ "Medidata Solutions, Inc." ], | ||
"requireLicenseAcceptance": true, | ||
"projectUrl": "https://github.com/mdsol/mauth-client-dotnet", | ||
"licenseUrl": "https://github.com/mdsol/mauth-client-dotnet/blob/master/LICENSE.md", | ||
"summary": "A core package for Medidata HMAC protocol implementation. This package contains the core functionality which used by the MAuth authentication protocol-specific components. This package also can be used standalone if you want to sign HTTP/HTTPS requests with Medidata MAuth keys using the .NET HttpClient message handler mechanism.", | ||
"releaseNotes": "This version introduces the MAuthSigningOptions options object instead of the MAuthOptions for the MAuthSigningHandler. With this change the handler does not need the MAuth server url for its configuration anymore.", | ||
"tags": [ "medidata", "mauth", "hmac", "authentication", "core", "httpclient", "messagehandler" ] | ||
}, | ||
|
||
"dependencies": { | ||
"NETStandard.Library": "1.6.1", | ||
"Newtonsoft.Json": "9.0.1" | ||
}, | ||
|
||
"frameworks": { | ||
"netstandard1.4": { | ||
"imports": "dnxcore50", | ||
"dependencies": { | ||
"System.Net.Http": "4.3.0", | ||
"Portable.BouncyCastle": "1.8.1.2" | ||
} | ||
}, | ||
"net452": { | ||
"dependencies": { | ||
"BouncyCastle": "1.8.1", | ||
"Microsoft.Net.Http": "2.2.22", | ||
"System.Net.Http": "4.0.0" | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>74308221-d7a5-4c15-86d2-62871655c24b</ProjectGuid> | ||
<RootNamespace>Medidata.MAuth.Owin</RootNamespace> | ||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath> | ||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"version": "2.1.0-*", | ||
"title": "Medidata.MAuth.Owin", | ||
"description": "This package contains an OWIN middleware to validate signed http requests with the Medidata MAuth protocol. The middleware communicates with an MAuth server in order to confirm the validity of the request authentication header. Include this package in your OWIN-enabled web api if you want to authenticate the api requests signed with the MAuth protocol.", | ||
"copyright": "Copyright © Medidata Solutions, Inc. 2016", | ||
"authors": [ "Medidata Solutions, Inc." ], | ||
|
||
"packOptions": { | ||
"owners": [ "Medidata Solutions, Inc." ], | ||
"requireLicenseAcceptance": true, | ||
"projectUrl": "https://github.com/mdsol/mauth-client-dotnet", | ||
"licenseUrl": "https://github.com/mdsol/mauth-client-dotnet/blob/master/LICENSE.md", | ||
"summary": "An OWIN middleware for the core Medidata.MAuth module.", | ||
"releaseNotes": "This version makes possible to read the OWIN request body in the subsequent middlewares after the authentication, even if the body stream is not seekable initially.", | ||
"tags": [ "medidata", "mauth", "hmac", "authentication", "core", "owin", "middleware", "webapi" ] | ||
}, | ||
|
||
"dependencies": { | ||
"Medidata.MAuth.Core": "2.1.0-*" | ||
}, | ||
|
||
"frameworks": { | ||
"net452": { | ||
"dependencies": { | ||
"Owin": "1.0.0", | ||
"Microsoft.Owin": "3.0.1" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>e557f648-6fe1-432e-a8d7-bd00c18e5176</ProjectGuid> | ||
<RootNamespace>Medidata.MAuth.WebApi</RootNamespace> | ||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath> | ||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"version": "2.1.0-*", | ||
"title": "Medidata.MAuth.WebApi", | ||
"description": "This package contains an HTTP message handler to validate signed http requests with the Medidata MAuth protocol. The handler communicates with an MAuth server in order to confirm the validity of the request authentication header. Include this package in your WebAPI application if you want to authenticate the api requests signed with the MAuth protocol.", | ||
"copyright": "Copyright © Medidata Solutions, Inc. 2016", | ||
"authors": [ "Medidata Solutions, Inc." ], | ||
|
||
"packOptions": { | ||
"owners": [ "Medidata Solutions, Inc." ], | ||
"requireLicenseAcceptance": true, | ||
"projectUrl": "https://github.com/mdsol/mauth-client-dotnet", | ||
"licenseUrl": "https://github.com/mdsol/mauth-client-dotnet/blob/master/LICENSE.md", | ||
"summary": "An HTTP message handler for the core Medidata.MAuth module.", | ||
"releaseNotes": "No major changes in this version of the WebAPI package this time.", | ||
"tags": [ "medidata", "mauth", "hmac", "authentication", "core", "webapi", "message", "handler" ] | ||
}, | ||
|
||
"dependencies": { | ||
"Medidata.MAuth.Core": "2.1.0-*" | ||
}, | ||
|
||
"frameworks": { | ||
"net452": { | ||
"dependencies": { | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>a1940d71-52b3-42ec-b2df-70782afff23c</ProjectGuid> | ||
<RootNamespace>Medidata.MAuth.Tests</RootNamespace> | ||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath> | ||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
using System.Reflection; | ||
using System.Runtime.InteropServices; | ||
using System.Runtime.InteropServices; | ||
|
||
[assembly: AssemblyTitle("Medidata.MAuth.Tests")] | ||
[assembly: AssemblyDescription("Assembly which contains unit tests of the Medidata.MAuth framework.")] | ||
[assembly: Guid("0c3cf95c-15c7-431a-b6a0-ec591240e315")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"version": "2.1.0-*", | ||
"title": "Medidata.MAuth.Tests", | ||
"authors": [ "Medidata Solutions, Inc." ], | ||
"description": "Assembly which contains unit tests of the Medidata.MAuth framework.", | ||
"copyright": "Copyright © Medidata Solutions, Inc. 2016", | ||
|
||
"testRunner": "xunit", | ||
|
||
"buildOptions": { | ||
"embed": [ | ||
"Mocks/Keys/*.*", | ||
"Mocks/Requests/*.*" | ||
], | ||
"copyToOutput": { | ||
"include": [ "xunit.runner.json" ] | ||
} | ||
}, | ||
|
||
"dependencies": { | ||
"xunit": "2.2.0-beta4-build3444", | ||
"dotnet-test-xunit": "2.2.0-preview2-build1029", | ||
"Medidata.MAuth.Core": { | ||
"target": "project" | ||
}, | ||
"Microsoft.Owin.Hosting": "3.0.1", | ||
"Microsoft.Owin.Testing": "3.0.1", | ||
"Microsoft.Owin.Host.HttpListener": "3.0.1" | ||
}, | ||
|
||
"frameworks": { | ||
"net452": { | ||
"dependencies": { | ||
"Medidata.MAuth.Owin": { | ||
"target": "project" | ||
}, | ||
"Medidata.MAuth.WebApi": { | ||
"target": "project" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"methodDisplay": "method" | ||
} |