summaryrefslogtreecommitdiffstats
path: root/projecttemplates/RelyingPartyLogic/OAuthAuthenticationModule.cs
Commit message (Collapse)AuthorAgeFilesLines
* Removes project templates.Andrew Arnott2013-06-161-93/+0
| | | | These haven't run correctly for many months anyway, and they'd be horribly out-dated even if they did work.
* Removes OAuthPrincipal in favor of ClaimsPrincipal.Andrew Arnott2013-03-031-1/+2
|
* projecttemplates now build.Andrew Arnott2013-01-271-6/+16
|
* Fixed a bunch more samples.Andrew Arnott2013-01-231-1/+1
|
* Fixes access denial errors from OAuth 2 resource servers so they include the ↵Andrew Arnott2012-04-221-1/+1
| | | | | | required parameters in their WWW-Authenticate headers. Fixes #124
* Replaces ResourceServer.VerifyAccess with a better pattern for error handling.Andrew Arnott2012-04-211-3/+4
| | | | Fixes #122
* Replaced API requirements for HttpRequestInfo with HttpRequestBase (new in ↵Andrew Arnott2012-03-051-1/+1
| | | | | | .NET 3.5 SP1). This makes us more friendly to MVC as well as mock-based unit testing.
* Updated all copyright notices to reflect copyright assignment to Outercurve.Andrew Arnott2012-02-051-2/+2
| | | | Fixes #66
* Implicit grants are now sort of working on the authorization server side.unknown2011-06-151-1/+1
| | | | | | Still to do: * Ensure no auto-authorize of access tokens based on previous authorizations for the unauthenticated client. * Provide the authorization server with a way to indicate access token lifetime, and to veto the request based on the requested scopes being too dangerous for the less secure implicit grant type.
* Fixed static field initialization.Andrew Arnott2011-04-071-6/+8
|
* Fixed non-thread-safe use of RsaCryptoServiceProvider instances.Andrew Arnott2011-04-071-1/+1
|
* Lots of work toward OAuth 2.0 in project templates and OAuthConsumerWpf sample.Andrew Arnott2010-07-141-1/+1
| | | | The WebFormsRelyingParty now works with the sample WPF OAuth client in a modified user-agent mode.
* Work toward the WebFormsRelyingParty project template to use OAuth 2.0 ↵Andrew Arnott2010-07-121-8/+9
| | | | | | instead of 1.0a. It compiles now. (and the MVC one doesn't).
* Moved all the project template logic that would be common between MVC and ↵Andrew Arnott2009-11-131-0/+78
web forms web sites into its own library.