summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fixes StyleCop issue.Andrew Arnott2012-03-311-1/+1
|
* Moved access token signing key to the parameters object.Andrew Arnott2012-03-313-27/+19
| | | | | | This also presumably solves the threading concerns of sharing one instance. Fixes #34
* Fixed a couple of failing unit tests.Andrew Arnott2012-03-311-1/+1
|
* Merge branch 'dev11' into v4.0Andrew Arnott2012-03-311-336/+315
|\ | | | | | | | | Conflicts: src/DotNetOpenAuth.sln
| * Merge branch 'v4.0'Andrew Arnott2012-03-311-333/+334
| |\
| | * Repaired sln file from Dev11 beta bugs.Andrew Arnott2012-03-301-40/+0
| | |
| | * Merged v4.0Andrew Arnott2012-03-303-120/+64
| | |\
| | * | Removed redundant web site properties in sln file.Andrew Arnott2012-03-211-183/+0
| | | | | | | | | | | | | | | | Bug in dev11 # 386292
| | * | Merge branch 'v4.0' into dev11Andrew Arnott2012-03-21238-1449/+6141
| | |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.sln
| | * | | Completed Dev11 upgrade. The file churn on every file open is finally over.Andrew Arnott2012-03-201-30/+112
| | | | | | | | | | | | | | | | | | | | This required upgrading the MVC projects to MVC 4.
| | * | | Additional changes.Andrew Arnott2012-02-241-388/+388
| | | | |
| | * | | Project compatibility upgrades for Dev11.Andrew Arnott2012-02-241-2/+2
| | | | |
* | | | | Consolidated all code and token serializations to one binding element.Andrew Arnott2012-03-306-172/+180
| | | | |
* | | | | Fixed up an authorization server's token endpoint to generate more accurate ↵Andrew Arnott2012-03-3014-115/+551
| | | | | | | | | | | | | | | | | | | | error messages.
* | | | | Added binding element comments.Andrew Arnott2012-03-305-3/+14
| | | | |
* | | | | Moved some message validation to another binding element.Andrew Arnott2012-03-294-15/+12
| | | | |
* | | | | Moved the code in AuthorizationCodeBindingElement into the ↵Andrew Arnott2012-03-295-91/+17
| | | | | | | | | | | | | | | | | | | | AuthorizationServer class.
* | | | | Beginning work of cleaning up the auth server binding elements.Andrew Arnott2012-03-267-46/+31
| | | | |
* | | | | Removed broken class diagram.Andrew Arnott2012-03-242-165/+0
| | | | |
* | | | | More comments and an visibility fix.Andrew Arnott2012-03-243-3/+5
| | | | |
* | | | | Fixed comments and a couple missing [Serializable] attributes.Andrew Arnott2012-03-245-4/+12
| | | | |
* | | | | StyleCop fixes.Andrew Arnott2012-03-248-41/+38
| | | | |
* | | | | Merge branch 'master' into oauth2refactorAndrew Arnott2012-03-243-78/+2
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.sln
| * | | | Merge branch 'v4.0'Andrew Arnott2012-03-242-75/+1
| |\ \ \ \ | | | |_|/ | | |/| | | | | | | | | | | | Conflicts: src/version.txt
| | * | | Incremented version numbers following v4.0.0 release.Andrew Arnott2012-03-241-2/+2
| | | | |
| | * | | Incremented OAuth2 package version.Andrew Arnott2012-03-241-1/+1
| | | | |
| | * | | Fix for NullReferenceException in the OAuth 1.0 demo due to HttpRequestInfo ↵Andrew Arnott2012-03-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | not initializing one of its fields. Fixes #97
| | * | | Removed "ReleaseNoUI" solution configuration.Andrew Arnott2012-03-221-75/+0
| | | |/ | | |/|
| * | | Incremented version numbers.Andrew Arnott2012-03-241-1/+1
| | | |
* | | | Merge branch 'master' into oauth2refactorAndrew Arnott2012-03-212-2/+19
|\ \ \ \ | |/ / /
| * | | Merge branch 'v4.0'Andrew Arnott2012-03-212-1/+18
| |\ \ \ | | |/ / | | | | | | | | | | | | Conflicts: src/version.txt
| | * | Updated version to reflect that the next release is anticipated to be RTW.Andrew Arnott2012-03-211-1/+1
| | | |
| | * | Fixed a bunch of NuGet package descriptions, and summaries.Andrew Arnott2012-03-211-0/+17
| | | |
| * | | Incremented version.txt for v4.1 beta.Andrew Arnott2012-03-181-2/+2
| |/ /
* | | All unit tests pass again.Andrew Arnott2012-03-181-13/+19
| | |
* | | Fixed another failing unit test.Andrew Arnott2012-03-181-1/+1
| | |
* | | Fixed failing unit test: ResourceOwnerPasswordCredentialGrant.Andrew Arnott2012-03-182-19/+12
| | |
* | | A little binding element cleanup.Andrew Arnott2012-03-182-15/+13
| | |
* | | Fixed a couple failing unit tests.Andrew Arnott2012-03-172-14/+20
| | |
* | | Fixed build breaks in the solution.Andrew Arnott2012-03-174-5/+10
| | |
* | | A bunch more moving of OAuth2 classes between assemblies.Andrew Arnott2012-03-1628-72/+131
| | |
* | | Redistributed OAuth2 code into their more specific assemblies.Andrew Arnott2012-03-1655-244/+704
|/ /
* | Fixed StyleCop warnings.Andrew Arnott2012-03-142-28/+31
| |
* | Access token endpoint now can respond with appropriate errors.Andrew Arnott2012-03-147-64/+82
| |
* | Fixed error message generated in exception thrown for bad access token requests.Andrew Arnott2012-03-145-12/+23
| |
* | Removed some pointless #regionsAndrew Arnott2012-03-114-26/+0
| |
* | Added explanatory comments and security warnings to the AuthenticationResult ↵Andrew Arnott2012-03-111-2/+7
| | | | | | | | in the AspNet project.
* | Reduced code used to translate strings to Identifiers.Andrew Arnott2012-03-113-17/+3
| |
* | Abbreviated some AX Fetch code in AspNet project.Andrew Arnott2012-03-112-6/+6
| |
* | Fixed AspNet project's Yahoo! OpenID client to use the HTTPS scheme.Andrew Arnott2012-03-112-2/+2
| | | | | | | | Also switched both Yahoo and Google clients to use the WellKnownProviders class instead of embedding the magic strings itself.
* | Fixed StyleCop settings files by removing the deprecated "Microsoft." prefixes.Andrew Arnott2012-03-112-7/+7
| |
* | Activating StyleCop on aspnet test assembly and fixed issues.Andrew Arnott2012-03-117-41/+73
| |
* | Fixed StyleCop issues and added comments.Andrew Arnott2012-03-111-3/+17
| |
* | Changed the compile-time switch for DH support into a runtime check for the ↵Andrew Arnott2012-03-119-46/+67
| | | | | | | | | | | | supporting assembling. Fixes #87
* | Set version to be "RC1".Andrew Arnott2012-03-101-1/+1
| |
* | Corrected copyright notice in AspNet assembly.Andrew Arnott2012-03-101-2/+2
| |
* | AssemblyVersion is now a simple major.minor string, to make referencing easier.Andrew Arnott2012-03-102-12/+10
| |
* | Centralized all version information, including prerelease details, into the ↵Andrew Arnott2012-03-102-3/+47
| | | | | | | | version.txt file.
* | Turned off ccrewrite.exe for test assembly.Andrew Arnott2012-03-101-2/+2
| |
* | StyleCop fixes on AspNet project.Andrew Arnott2012-03-1020-190/+151
| |
* | FxCop fixes and suppressions.Andrew Arnott2012-03-1018-29/+133
| |
* | Applied all the StyleCop fixes necessary by the StyleCop 4.7 upgrade.Andrew Arnott2012-03-1061-242/+941
| |
* | Fixed NullReferenceException causing a unit test failure.Andrew Arnott2012-03-081-2/+11
| |
* | OAuth 2 clients now use the state parameter to mitigate XSRF attacks.Andrew Arnott2012-03-084-10/+26
| | | | | | | | Fixes #84
* | Hacks in support for Facebook, which is missing the token_type parameter in ↵Andrew Arnott2012-03-071-1/+1
| | | | | | | | | | | | its successful access token responses. Fixes #82
* | Merge branch 'master' of github.com:AArnott/dotnetopenidAndrew Arnott2012-03-056-10/+29
|\ \
| * | Fix unit tests failing in DotNetOpenAuth.AspNet.Text projects.Microsoft2012-03-026-10/+29
| | |
* | | Fixed StyleCop messages.Andrew Arnott2012-03-055-13/+121
| | |
* | | HttpRequestInfo ctors are now internal, and publicly we have staticAndrew Arnott2012-03-053-6/+22
| | | | | | | | | | | | factory methods that return HttpRequestBase instances.
* | | Replaced API requirements for HttpRequestInfo with HttpRequestBase (new in ↵Andrew Arnott2012-03-0543-610/+429
|/ / | | | | | | | | | | .NET 3.5 SP1). This makes us more friendly to MVC as well as mock-based unit testing.
* | Added missing build configurations.Andrew Arnott2012-03-011-1/+15
| |
* | Replaced manual argument validation with helper methods.Andrew Arnott2012-03-0112-121/+51
| |
* | ReSharper code cleanup to help get this AspNet contribution into StyleCop ↵Andrew Arnott2012-03-0124-615/+1255
| | | | | | | | compliance.
* | Fixed some bad or missing URL escaping.Andrew Arnott2012-03-014-35/+31
| |
* | Added some missing comments.Andrew Arnott2012-03-017-3/+126
| |
* | Replaced AspNet project's Uri.ToString() calls with Uri.AbsoluteUriAndrew Arnott2012-03-013-7/+7
| | | | | | | | http://blog.nerdbank.net/2008/04/uriabsoluteuri-and-uritostring-are-not.html
* | Added copyright messages to AspNet project.Andrew Arnott2012-03-0124-36/+174
| |
* | Add access token to the extraData dictionary when authentication is successful.Microsoft2012-03-012-1/+11
| |
* | Merge branch 'master' into webpagesAndrew Arnott2012-03-01684-2447/+4425
|\ \ | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.sln
| * | Added ReSharper team settings to source control.Andrew Arnott2012-02-261-0/+42
| | |
| * | Revised more unit testes to use "fluent" NUnit API.Andrew Arnott2012-02-261-13/+13
| | |
| * | Migrated OAuth 2 tests to the new NUnit Assert syntax.Andrew Arnott2012-02-253-23/+23
| | |
| * | Changed all uses of [TestCase] to [Test] to better emulate recommended NUnit ↵Andrew Arnott2012-02-2590-425/+425
| | | | | | | | | | | | patterns.
| * | StyleCop fix.Andrew Arnott2012-02-251-2/+1
| | |
| * | Added scopes to the tested authorization flows.Andrew Arnott2012-02-253-7/+17
| | |
| * | Renamed ObtainClientAccessToken.Andrew Arnott2012-02-252-2/+2
| | |
| * | Added client credential grant type support and a test to prove it.Andrew Arnott2012-02-255-20/+120
| |/ | | | | | | Fixes #33
| * Adds support for the resource owner password credential grant.Andrew Arnott2012-02-245-2/+90
| | | | | | | | Fixes #72
| * OAuth2 resource servers accept the HTTP verbs: PUT, DELETE, HEAD in addition ↵Andrew Arnott2012-02-231-0/+1
| | | | | | | | | | | | to the normal GET, POST Fixes #62
| * Split out the authorization carrying messages into distinct interfaces.Andrew Arnott2012-02-2313-132/+160
| | | | | | | | This is to support additional grant types such as resource owner password credential and client credentials.
| * Added basic test for resource owner password authorizatino request. Not yet ↵Andrew Arnott2012-02-234-8/+64
| | | | | | | | passing.
| * Fixed compiler warning.Andrew Arnott2012-02-221-1/+1
| |
| * Enabled unit test.Andrew Arnott2012-02-221-1/+2
| |
| * Split up end user authorization request message types between auth code and ↵Andrew Arnott2012-02-218-29/+109
| | | | | | | | implicit.
| * Added assertions about whether the client is authenticated.Andrew Arnott2012-02-212-1/+11
| |
| * Added two more OAuth2 unit tests, for the UserAgentClient class.Andrew Arnott2012-02-215-30/+142
| |
| * Moved some test code around.Andrew Arnott2012-02-202-8/+18
| |
| * Added scaffolding for OAuth2 unit tests and added the first test for client ↵Andrew Arnott2012-02-2022-55/+298
| | | | | | | | authorization.
| * Added spec required HTTP header in access token response.Andrew Arnott2012-02-191-0/+1
| |
| * Removed requirement for callback parameter, per the spec.Andrew Arnott2012-02-193-7/+19
| |