summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Lots more test build break fixes.Andrew Arnott2013-03-1717-167/+157
|
* More build break fixes.Andrew Arnott2013-03-103-15/+16
|
* More unit test fixes.Andrew Arnott2013-03-1020-444/+698
|
* More test build break fixes.Andrew Arnott2013-03-0910-177/+135
|
* More test build break fixes.Andrew Arnott2013-03-094-105/+136
|
* Many more unit test build fixes and product touch-ups.Andrew Arnott2013-03-0723-578/+401
|
* Unit test build break fixes.Andrew Arnott2013-03-0635-1368/+321
|
* Revise receiver of ApplyHeaders extension method.Andrew Arnott2013-03-051-4/+3
|
* Greatly simplifies ApplyHeaders method.Andrew Arnott2013-03-051-32/+3
|
* Moved Offline OP to use controllers.Andrew Arnott2013-03-049-342/+273
|
* Switched OpenIdOfflineProvider to use HttpSelfHostServer.Andrew Arnott2013-03-046-301/+157
|
* OpenIdOfflineProvider and RP now work together.Andrew Arnott2013-03-043-2/+66
|
* Changed all ASP.NET async void event handlers to use RegisterAsyncTask, ↵Andrew Arnott2013-03-0429-806/+985
| | | | which avoids bugs in ASP.NET.
* A few more fixes.Andrew Arnott2013-03-0411-6/+12
|
* Switched Channel to receiving messages via HttpRequestMessage as well.Andrew Arnott2013-03-0459-360/+493
|
* Unit test compile error fixes.Andrew Arnott2013-03-038-116/+93
|
* Fixes up user rejection cases.Andrew Arnott2013-03-035-48/+52
|
* Adds an explicit role requirement for WebAPI clients.Andrew Arnott2013-03-031-1/+1
|
* Adds OpenID RP to WebAPI sample so it's a real login.Andrew Arnott2013-03-037-11/+64
|
* Merge branch 'OAuthSimple' into httpclientAndrew Arnott2013-03-0391-2466/+1575
|\
| * Removes OAuthPrincipal in favor of ClaimsPrincipal.Andrew Arnott2013-03-0311-184/+37
| |
| * Fixes bad logic that reports expired tokens incorrectly.Andrew Arnott2013-03-021-1/+1
| |
| * Switch to use HttpClient for OAuth 2 authorized call.Andrew Arnott2013-03-022-23/+12
| |
| * Fixed up WebAPI sample so it works with anonymous clients.Andrew Arnott2013-03-027-12/+40
| |
| * Removes the memory crypto key store from the sample.Andrew Arnott2013-03-028-73/+255
| | | | | | | | We now have a 'hard-coded' secret key store that trivial apps/samples may use to keep things simple until they create a database table.
| * Removes trivial nonce store implementation from WebAPI sample.Andrew Arnott2013-03-025-24/+10
| |
| * Comment fixAndrew Arnott2013-03-021-5/+0
| |
| * Applied similar redirect fixes elsewhere.Andrew Arnott2013-03-024-7/+8
| |
| * Fixes some recent regressions to get twitter.aspx working.Andrew Arnott2013-03-024-4/+15
| |
| * Fixes build breaks in DNOA.AspNetAndrew Arnott2013-03-0210-561/+58
| |
| * Fixes build breaks everywhere exception DNOA.AspNet.Andrew Arnott2013-03-0215-200/+69
| |
| * Merge branch 'httpclient' into OAuthSimpleAndrew Arnott2013-03-01120-6/+34176
| |\ | |/ |/|
* | Adds a WebAPI sample that is its own authorization server and resource server.Andrew Arnott2013-03-01115-1/+34137
| |
* | Fixes basic auth creation.Andrew Arnott2013-03-011-1/+1
| |
* | Adds support for symmetric key signing and encryption of access tokens.Andrew Arnott2013-03-013-3/+37
| | | | | | | | 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.
* | Fixes NullReferenceException in MessageValidationBindingElement.Andrew Arnott2013-02-281-1/+1
| |
| * Fixes some OAuth 1 build breaks.Andrew Arnott2013-02-2619-258/+311
| |
| * OAuth 1.0 Consumers are now *much* simpler, entirely avoiding channels.Andrew Arnott2013-02-2537-1257/+902
|/ | | | Build breaks in other projects, however.
* StyleCop fixes.Andrew Arnott2013-02-215-48/+61
|
* Adds the OAuth 1 consumer PLAINTEXT signing message handler.Andrew Arnott2013-02-213-19/+79
|
* Adds the OAuth 1 consumer RSA-SHA1 signing message handler.Andrew Arnott2013-02-212-0/+52
|
* Renames ApplyOAuthParameter method.Andrew Arnott2013-02-212-3/+3
|
* Removes ConsumerBase.PrepareAuthorizedRequestAsync methods.Andrew Arnott2013-02-2011-191/+126
| | | | HttpClient, full steam ahead.
* Removes OAuth 1 samples from the OAuth 2 site.Andrew Arnott2013-02-1913-698/+0
|
* Matured the OAuth 1 consumer signing handler a bit.Andrew Arnott2013-02-1810-97/+469
|
* More warning fixes.Andrew Arnott2013-02-1614-48/+86
|
* Lots of stylecop fixes.Andrew Arnott2013-02-1646-136/+429
|
* More warning fixes.Andrew Arnott2013-02-1045-66/+221
|
* C# compiler warning fixes.Andrew Arnott2013-02-1090-604/+818
|
* Fixes up WCF OAuth 1 samples.Andrew Arnott2013-02-1019-320/+158
|
* Adds a delegating HTTP handler that applies OAuth 1 signatures.Andrew Arnott2013-02-106-3/+69
|
* Fixes OAuthConsumer twitter sample.Andrew Arnott2013-02-0925-69/+94
|
* Fixes double definition in web.config file.Andrew Arnott2013-02-091-2/+1
|
* Removes unnecessary .config settings.Andrew Arnott2013-02-0912-45/+8
|
* Fixed trust level change that was committed unintentionally.Andrew Arnott2013-02-091-1/+1
|
* Fixes more synchronous blocks.Andrew Arnott2013-02-092-25/+28
|
* Assocations with providers when OpenID discovery yields multiple endpoints ↵Andrew Arnott2013-02-092-11/+29
| | | | can now happen in parallel.
* Fixes ASP.NET controls to be async.Andrew Arnott2013-02-0919-64/+120
|
* Fixes OpenIdLogin control and sample.Andrew Arnott2013-02-092-2/+2
|
* Restores exception wrapping.Andrew Arnott2013-02-091-16/+21
|
* Adds missing reference to TestWeb.Andrew Arnott2013-02-092-0/+3
|
* Fixed OpenIdOfflineProvider so it can actually launch.Andrew Arnott2013-01-282-7/+3
|
* Updates to Validation 2.0.2 and log4net 2.0.0.Andrew Arnott2013-01-2752-104/+104
|
* Removed references to obsolete AsyncController.Andrew Arnott2013-01-274-4/+4
|
* Retargets DNOA to MVC 4 (since async controllers require MVC 4).Andrew Arnott2013-01-2713-44/+114
|
* Fixed login on OpenIdRelyingPartyMvc sample, retargeting to MVC 4.Andrew Arnott2013-01-274-8/+39
|
* Finished fixing build breaks except in test projects.Andrew Arnott2013-01-2711-65/+117
|
* projecttemplates now build.Andrew Arnott2013-01-2715-106/+237
|
* Samples all build now.Andrew Arnott2013-01-2716-50/+71
|
* More fixesAndrew Arnott2013-01-243-29/+32
|
* Fixed a bunch more samples.Andrew Arnott2013-01-2328-140/+195
|
* Fixes more samples.Andrew Arnott2013-01-2331-126/+140
|
* OpenIdProviderWebForms now builds.Andrew Arnott2013-01-2311-32/+125
|
* ApplicationBlock builds.Andrew Arnott2013-01-2319-304/+230
|
* OpenIdRelyingPartyMvc sample now builds.Andrew Arnott2013-01-155-3/+19
|
* All product projects now build.Andrew Arnott2013-01-1419-127/+144
|
* OpenId.Provider.UI builds now.Andrew Arnott2013-01-131-35/+43
|
* OAuth2.AuthorizationServer now builds.Andrew Arnott2013-01-135-47/+35
|
* OAuth2.ResourceServer now builds.Andrew Arnott2013-01-135-25/+30
|
* OAuth2.Client.UI now builds.Andrew Arnott2013-01-131-10/+12
|
* OAuth2.Client builds.Andrew Arnott2013-01-1313-93/+168
|
* OAuth.SP now builds.Andrew Arnott2013-01-136-97/+44
|
* DNOA.OAuth project now builds.Andrew Arnott2013-01-1312-70/+88
|
* Made another method async for consistency.Andrew Arnott2013-01-125-9/+9
|
* OpenId.Provider now builds.Andrew Arnott2013-01-1219-194/+139
|
* OpenID.RP.UI now builds, and ASP.NET control login works.Andrew Arnott2013-01-1212-143/+206
|
* Adds another catch block to the logger initializer.Andrew Arnott2013-01-021-0/+2
|
* Fixes KeyNotFoundException in logging.Andrew Arnott2013-01-011-1/+1
|
* Web Forms based OpenID RPs work now.Andrew Arnott2013-01-019-27/+46
|
* OpenID RP login actually works now.Andrew Arnott2013-01-016-34/+56
|
* Fixes default ctor argument of identifier discovery services.Andrew Arnott2012-12-3113-31/+65
|
* Adds HttpResponseMessage.AsActionResult extension method.Andrew Arnott2012-12-311-0/+28
|
* DNOA.OpenId.RP now builds.Andrew Arnott2012-12-3130-386/+505
|
* Fixes build breaks in DNOA.OpenId.Andrew Arnott2012-12-3123-202/+885
|
* Replaces IDirectWebRequestHandler with HttpClient in DNOA.Core.Andrew Arnott2012-12-2919-2461/+102
| | | | Build breaks are everywhere outside of just this one project as a result.
* Consolidating on NUnit 2.6.1 (latest supported by TeamCity).Andrew Arnott2012-12-29154-3156/+3535
|
* Fixes up some missing references.Andrew Arnott2012-12-2929-34/+162
| | | | Upgrades MVC dependency from 1.0 to 3.0, via NuGet.
* Fixed up doc building for .NET 4.5 targeting.Andrew Arnott2012-12-2917-45/+85
|
* Target exclusively .NET Framework 4.5.Andrew Arnott2012-12-28124-51601/+454
|\
| * Fixes doc build break.Andrew Arnott2012-12-281-1/+1
| |