summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* 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 '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
|/
* 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
| |
| * Fixed up the various protocol channels to correctly apply HTTP headers ↵Andrew Arnott2012-02-195-12/+21
| | | | | | | | prescribed by the messages.
| * Avoid a NullReferenceException is an OAuth 2 resource server's direct ↵Andrew Arnott2012-02-161-3/+7
| | | | | | | | response message doesn't implement IHttpDirectResponse.
| * Suppressed refresh tokens when client credentials are used to comply with ↵Andrew Arnott2012-02-164-0/+34
| | | | | | | | OAuth 2.0 section 4.4.3.
| * Brings back HTTP Authorization header whitespace trimming.Andrew Arnott2012-02-151-1/+1
| | | | | | | | | | | | Fixes issue where DNOA 4.0 regressed from v3.4 in not trimming spaces around HTTP Authorization header tokens. Thanks to Guilherme Reis for reporting the bug.
| * Added a couple of new authorization request response codes.Andrew Arnott2012-02-131-0/+10
| |
| * Added valid scope token verification.Andrew Arnott2012-02-123-1/+42
| |
| * Added ClientType enum.Andrew Arnott2012-02-123-0/+60
| |
| * Renamed IConsumerDescription to IClientDescription.Andrew Arnott2012-02-124-16/+16
| |
| * Fixed many FxCop messages in OAuth2 assemblies. #68Andrew Arnott2012-02-0919-28/+531
| |
| * InfoCard assemblies now FxCop clean. #68Andrew Arnott2012-02-091-0/+4
| |
| * OAuth 1 assemblies now FxCop clean. #68Andrew Arnott2012-02-098-19/+17
| |
| * OpenID assemblies now are FxCop clean. #68Andrew Arnott2012-02-092-0/+4
| |
| * Fixed FxCop messages in DNOA.Core #68Andrew Arnott2012-02-0914-18/+86
| |
| * Removed log4net reference from all bug DNOA.Core assembly.Andrew Arnott2012-02-081-0/+5
| |
| * Added DotNetOpenAuth.OAuth.Common to contain dependencies shared between ↵Andrew Arnott2012-02-0819-44/+168
| | | | | | | | | | | | OAuth 1 and OAuth 2. Related to and closes #71
| * Removed OAuth1's dependency on OpenID assemblies.Andrew Arnott2012-02-0814-163/+384
| | | | | | | | Related to #71
| * Removed reference to OpenId.RelyingParty from OpenId.Provider.Andrew Arnott2012-02-0711-97/+183
| | | | | | | | This is part of the fix for #71.
| * Fixed solution file for updated paths to oauth specs.Andrew Arnott2012-02-061-2/+3
| |
| * Updated all copyright notices to reflect copyright assignment to Outercurve.Andrew Arnott2012-02-05638-1297/+1297
| | | | | | | | Fixes #66
| * Fixed whitespace.Andrew Arnott2012-02-041-6/+5
| |
| * Merge remote-tracking branch 'rafek/master'Andrew Arnott2012-02-041-2/+6
| |\
| | * Added returnTo parameter to PrepareRequestUserAuthorization in ↵Rafal Legiedz2012-02-041-2/+6
| | | | | | | | | | | | OAuth2/WebServerClient.cs
| * | Added OAuth 1.0 samples from v3.4 branch and fixed them up a bit so thatAndrew Arnott2012-02-021-0/+25
| |/ | | | | | | | | | | they work here. Fixes #64
| * Fixed rendering of OpenIdSelector ASP.NET control.Andrew Arnott2012-01-303-10/+7
| |
| * Fixed build break.Andrew Arnott2012-01-291-1/+1
| |
| * Merge branch 'v3.4'Andrew Arnott2012-01-293-7/+9
| |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: nuget/nuget.proj samples/OpenIdOfflineProvider/OpenIdOfflineProvider.csproj src/DotNetOpenAuth/DotNetOpenAuth.csproj src/DotNetOpenAuth/Messaging/Reflection/MessageDescription.cs tools/DotNetOpenAuth.props
| | * Replaced explicit SHA* implementation references with generic ones that ↵origin/v3.4Andrew Arnott2012-01-282-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | allows .config files to control which implementation to use. This allows FIPS-compliance requirements to be satisfied while using DotNetOpenAuth. Fixes #47
| | * Fixed build break due to bad path to ilmerge.exeunknown2011-11-271-4/+0
| | |
| | * Fix for 2-legged OAuth.Andrew Arnott2011-07-041-3/+4
| | |
| | * Better logging.Andrew Arnott2011-07-041-2/+3
| | |
| | * Works around a difference in behavior (bug?) between ASp.NET web forms Page ↵Andrew Arnott2011-06-271-2/+2
| | | | | | | | | | | | | | | | | | and MVC Razor Page classes that led to incorrect URL rendering. Fixes #41
* | | Some StyleCop fixes for ASP.NET team's contribution.Andrew Arnott2012-03-0127-1931/+1714
| | |