Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove unnecessary references to Microsoft.Net.Http and Microsoft.Bcl.Build ↵ | lcalabrese | 2015-08-07 | 2 | -19/+1 |
| | | | | since we are using .NET 4.5 and the built-in System.Net.Http library | ||||
* | #365 | David Christiansen | 2015-01-05 | 2 | -0/+133 |
| | |||||
* | Test green | David Christiansen | 2015-01-05 | 3 | -78/+747 |
| | | | | - Packages update | ||||
* | Closes #356, Closes #357, Closes #358 | David Christiansen | 2015-01-04 | 2 | -0/+4 |
| | |||||
* | Fixed issue #339 minor typo in ResourceServer | Aaron Williams | 2014-05-02 | 1 | -1/+1 |
| | |||||
* | Updates NuGet packages. | Andrew Arnott | 2013-10-19 | 2 | -1/+14 |
| | |||||
* | Strong-name key is replaced with non-encrypted one. | Andrew Arnott | 2013-06-15 | 1 | -1/+1 |
| | |||||
* | Lots of StyleCop fixes. | Andrew Arnott | 2013-03-26 | 3 | -3/+15 |
| | |||||
* | Unit test build break fixes. | Andrew Arnott | 2013-03-06 | 1 | -1/+1 |
| | |||||
* | Switched Channel to receiving messages via HttpRequestMessage as well. | Andrew Arnott | 2013-03-04 | 2 | -34/+34 |
| | |||||
* | Removes OAuthPrincipal in favor of ClaimsPrincipal. | Andrew Arnott | 2013-03-03 | 1 | -3/+2 |
| | |||||
* | Adds support for symmetric key signing and encryption of access tokens. | Andrew Arnott | 2013-03-01 | 1 | -1/+14 |
| | | | | This targets the common scenario where authorization servers and resource servers are actually on the same web application, and asymmetric cryptography is overkill and requires extra setup. | ||||
* | C# compiler warning fixes. | Andrew Arnott | 2013-02-10 | 2 | -21/+18 |
| | |||||
* | Fixes OAuthConsumer twitter sample. | Andrew Arnott | 2013-02-09 | 1 | -1/+1 |
| | |||||
* | Updates to Validation 2.0.2 and log4net 2.0.0. | Andrew Arnott | 2013-01-27 | 2 | -3/+3 |
| | |||||
* | OAuth2.ResourceServer now builds. | Andrew Arnott | 2013-01-13 | 2 | -18/+26 |
| | |||||
* | System.Net.Http references recreated using NuGet. | Andrew Arnott | 2012-12-28 | 2 | -0/+7 |
| | |||||
* | Patches up the last nuget package reference for NET4.5 | Andrew Arnott | 2012-12-28 | 1 | -1/+1 |
| | |||||
* | Removes CLR4 compiler symbol. | Andrew Arnott | 2012-12-28 | 1 | -6/+0 |
| | |||||
* | Accomodates nuget's insistent project file changes. | Andrew Arnott | 2012-12-27 | 1 | -0/+2 |
| | |||||
* | Removes more remnants of Code Contracts. | Andrew Arnott | 2012-12-26 | 6 | -36/+0 |
| | |||||
* | Replaces DNOA's internal Requires class with Validation NuGet package. | Andrew Arnott | 2012-12-26 | 6 | -2/+16 |
| | |||||
* | Merge branch 'v4.1' | Andrew Arnott | 2012-12-02 | 1 | -3/+9 |
|\ | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/StandardAccessTokenAnalyzer.cs src/DotNetOpenAuth.Test/OAuth2/OAuth2TestBase.cs src/version.txt | ||||
| * | Allows resource servers to receive unencrypted access tokens. | Andrew Arnott | 2012-11-11 | 1 | -2/+1 |
| | | |||||
| * | Wraps IOException with ProtocolException while decoding access tokens. | Andrew Arnott | 2012-11-11 | 1 | -1/+7 |
| | | | | | | | | Related to #178 | ||||
| * | Fixes exception thrown on missing access token | Andrew Arnott | 2012-11-10 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | The resource server was throwing an ArgumentException when an HTTP Authorization header appeared with a value of "Bearer " but no access token. We now throw a ProtocolException that can produce the appropriate error to the client. Fixes #230 | ||||
* | | Merge remote-tracking branch 'aarnott/master' | Andrew Arnott | 2012-10-29 | 1 | -1/+1 |
|\ \ | |/ |/| | |||||
| * | Adds AuthorizationServer.DecodeRefreshToken | Andrew Arnott | 2012-07-20 | 1 | -1/+1 |
| | | | | | | | | | | | | And a unit test. Fixes #182 | ||||
* | | Adjusted AssemblyInfo.cs to be unique for each assembly. | Andrew Arnott | 2012-09-29 | 1 | -9/+1 |
| | | | | | | | | This should fix nuget pdb package submission to symbolsource.org | ||||
* | | Adds overloads of ResourceServer for HttpRequestMessage. | Andrew Arnott | 2012-09-27 | 1 | -0/+41 |
|/ | | | | | | | The GetPrincipal and GetAccessToken now better support resource servers that are written in ASP.NET WebAPI. Fixes #206 | ||||
* | Authorization Server hosts now instantiate their own AccessTokens rather ↵ | Andrew Arnott | 2012-04-25 | 1 | -1/+2 |
| | | | | | | | than just parameters. AccessTokens are now serialized via a virtual method on that instance. Fixes #38, I think. | ||||
* | Fixed C# warnings. | Andrew Arnott | 2012-04-23 | 1 | -3/+3 |
| | |||||
* | Removed old FxCop suppression attributes. | Andrew Arnott | 2012-04-22 | 2 | -5/+0 |
| | |||||
* | Fixes access denial errors from OAuth 2 resource servers so they include the ↵ | Andrew Arnott | 2012-04-22 | 2 | -9/+36 |
| | | | | | | required parameters in their WWW-Authenticate headers. Fixes #124 | ||||
* | Replaces ResourceServer.VerifyAccess with a better pattern for error handling. | Andrew Arnott | 2012-04-21 | 1 | -49/+41 |
| | | | | Fixes #122 | ||||
* | Fixed up the configuration story for OAuth 2. | Andrew Arnott | 2012-04-18 | 2 | -1/+38 |
| | |||||
* | Merge branch 'v4.0' | Andrew Arnott | 2012-04-05 | 4 | -12/+12 |
|\ | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.OAuth2.Client/DotNetOpenAuth.OAuth2.Client.csproj src/DotNetOpenAuth.OAuth2.ResourceServer/DotNetOpenAuth.OAuth2.ResourceServer.csproj src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/ResourceServer.cs | ||||
| * | Fixed peverify errors in unified assembly due to two resources sharing a ↵ | Andrew Arnott | 2012-04-05 | 4 | -10/+10 |
| | | | | | | | | | | | | common manifest name. Related to #112 which reported peverify errors, but this is very unlikely to fix the VerificationException. | ||||
* | | AccessToken is now a public class. | Andrew Arnott | 2012-04-01 | 5 | -48/+83 |
| | | | | | | | | | | | | | | | | | | | | | | Resource Servers can now handle access tokens that are issued for a client's data (not a 3rd party resource owner's). Client Identifiers are no longer included in access tokens for unauthenticated clients. More work needed on IAccessTokenAnalyzer and the access token formatter. We need to generalize the serialization itself so folks can use JWT, etc. We also still need access token to have a host-defined map of claims. Fixes #104 Fixes #102 | ||||
* | | Fixed build breaks in the solution. | Andrew Arnott | 2012-03-17 | 1 | -2/+2 |
| | | |||||
* | | A bunch more moving of OAuth2 classes between assemblies. | Andrew Arnott | 2012-03-16 | 3 | -0/+132 |
| | | |||||
* | | Redistributed OAuth2 code into their more specific assemblies. | Andrew Arnott | 2012-03-16 | 2 | -0/+154 |
|/ | |||||
* | Replaced API requirements for HttpRequestInfo with HttpRequestBase (new in ↵ | Andrew Arnott | 2012-03-05 | 1 | -2/+2 |
| | | | | | | .NET 3.5 SP1). This makes us more friendly to MVC as well as mock-based unit testing. | ||||
* | Fixed many FxCop messages in OAuth2 assemblies. #68 | Andrew Arnott | 2012-02-09 | 4 | -2/+220 |
| | |||||
* | Added DotNetOpenAuth.OAuth.Common to contain dependencies shared between ↵ | Andrew Arnott | 2012-02-08 | 2 | -4/+5 |
| | | | | | | OAuth 1 and OAuth 2. Related to and closes #71 | ||||
* | Updated all copyright notices to reflect copyright assignment to Outercurve. | Andrew Arnott | 2012-02-05 | 2 | -5/+5 |
| | | | | Fixes #66 | ||||
* | Added Moq's internal proxy generator to InternalsVisibleTo so that mocks can ↵ | Andrew Arnott | 2012-01-29 | 1 | -0/+2 |
| | | | | be created on internal types. | ||||
* | Renamed assembly DotNetOpenAuth.Messaging(.UI) to DotNetOpenAuth.Core(.UI) | Andrew Arnott | 2012-01-12 | 1 | -2/+2 |
| | |||||
* | All product assemblies build without ccrewrite.exe now. | Andrew Arnott | 2011-09-18 | 1 | -4/+4 |
| | |||||
* | Broke out OAuth 2 into 4 separate assemblies. | Andrew Arnott | 2011-08-01 | 3 | -0/+229 |