summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* whitespace.Andrew Arnott2008-10-061-2/+2
|
* Added specific authorization to sample for allowing limited access.Andrew Arnott2008-10-061-1/+1
|
* WCF OAuth sample now has 'real' database and login.Andrew Arnott2008-10-061-0/+6
|
* Fixed a few failing unit tests.Andrew Arnott2008-10-052-2/+2
|
* Added more intelligent URI query stripping to protect against repeat ↵Andrew Arnott2008-10-042-1/+23
| | | | attempts from ASPX pages.
* Added WCF sample consumer and service provider.Andrew Arnott2008-10-041-0/+30
| | | | It's pretty delicate and a poor sample, but hey, it worked.
* Added some facility for working with WCF services.Andrew Arnott2008-10-044-70/+108
|
* Changed the way HttpMethod is derived for signing verification.Andrew Arnott2008-10-047-24/+23
|
* Fixed NullReferenceException thrown sometimes from StandardWebRequestHandler.Andrew Arnott2008-10-041-2/+6
|
* Added Consumer WPF and ASP.NET WebForms samples.Andrew Arnott2008-10-021-0/+36
|
* Enhanced API to better support Desktop App consumers.Andrew Arnott2008-10-022-26/+83
|
* Documented all members... StyleCop is now happy.Andrew Arnott2008-10-024-19/+125
|
* More public API work.Andrew Arnott2008-10-024-9/+9
|
* Exposed more message types to enable Service Provider scenarios.Andrew Arnott2008-10-0210-57/+68
|
* Public API work.Andrew Arnott2008-10-025-26/+48
|
* StyleCop work and adding support for including extra parameters where the ↵Andrew Arnott2008-10-0210-23/+67
| | | | spec allows it.
* Split up the two OAuth message type providers into Consumer and Service ↵Andrew Arnott2008-10-0210-78/+212
| | | | | | Provider classes so they could actually work correctly.. Added Try methods to read messages that might not be there without throwing exceptions.
* Removed the queue/dequeue methodology of queued responses. Now the methods ↵Andrew Arnott2008-10-029-91/+31
| | | | | | that generate them return them. Besides simplifying the API somewhat, this change allows for Consumer, ServiceProvider and Channel classes to be entirely threadsafe and reusable.
* Removed double URI escaping from signature binding elements.Andrew Arnott2008-10-025-6/+6
| | | | This gets the first legs of OAuth working with Google.
* Fixed HTTP Authorization header to not include extra parameters.Andrew Arnott2008-10-028-26/+34
| | | | Combined the AdditionalParametersInHttpRequest and ExtraData concepts
* Add/removed some TODOsAndrew Arnott2008-10-022-1/+4
|
* Made a bunch of interfaces and classes public to allow Consumer sample.Andrew Arnott2008-10-025-7/+7
|
* Fixed StyleCop issues and added a couple of HMAC signature tests.Andrew Arnott2008-10-027-50/+99
|
* Added capability to add extra fields to request token message.Andrew Arnott2008-09-284-2/+25
|
* Fixed OAuth channel bug that would not set HTTP Method in time for HMAC-SHA1 ↵Andrew Arnott2008-09-283-1/+51
| | | | signing.
* Added logging to library.Andrew Arnott2008-09-282-0/+10
|
* Refactored ServiceProviderEndpoints into ServiceProviderDescription and made ↵Andrew Arnott2008-09-2815-45/+56
| | | | several classes and interfaces public.
* Updated gitignore files.Andrew Arnott2008-09-281-1/+0
|
* Removed hard-coded signing modules.Andrew Arnott2008-09-285-14/+11
|
* Appendix scenario test passing (again), this time with HMAC signing of HTTP ↵Andrew Arnott2008-09-2832-157/+246
| | | | requests.
* Added SigningBindingElementChain class to enable the use of several signers ↵Andrew Arnott2008-09-2718-91/+244
| | | | based on the situation.
* PlainText signing binding element no longer signs HTTP messages, but only ↵Andrew Arnott2008-09-275-1/+67
| | | | | | HTTPS messages. This breaks the scenario test.
* Added final protected resource request to Appendix scenario test.Andrew Arnott2008-09-2710-36/+204
|
* Fixed incoming OAuth message type discernment.Andrew Arnott2008-09-266-7/+30
|
* Added capability to send the final authorized request for protected resources.Andrew Arnott2008-09-2611-61/+246
|
* Added check so that unauthorized request tokens cannot be exchanged for ↵Andrew Arnott2008-09-256-0/+58
| | | | access tokens.
* Fixed lots of StyleCop issues and refacted Consumer/Service Provider a bit.Andrew Arnott2008-09-2515-121/+249
|
* Added enough token management that the Appendix A scenario test is passing ↵Andrew Arnott2008-09-2519-110/+339
| | | | again.
* Added facility for SPs to inject extra information into messages prior to ↵Andrew Arnott2008-09-248-11/+81
| | | | signature verification.
* Fixed Coordinator to better handle its helper threads throwing exceptions.Andrew Arnott2008-09-241-2/+26
|
* Added a message cloning feature to the mock channel.Andrew Arnott2008-09-241-3/+39
| | | | | Private fields no longer carry across the channel, to better simulate real life transports. This breaks the Appendix A scenario test since the token secret isn't injected into the deserialized message before the signature is verified.
* Fixed token secret retention bug.Andrew Arnott2008-09-244-5/+11
|
* Added logging.Andrew Arnott2008-09-244-9/+37
|
* Added a scenario test from Appendix A (incomplete but passing so far).Andrew Arnott2008-09-2420-58/+500
| | | | Included in this change are a lot of fixes and additional implementation.
* Implementing and refactoring ServiceProvider and Consumer classes.Andrew Arnott2008-09-2319-83/+233
| | | | Beginning to write a test for the spec's appendix A scenario.
* Added implementation for RSA-SHA1 signature.Andrew Arnott2008-09-222-7/+8
|
* Implemented the PLAINTEXT and HMAC-SHA1 signature algorithms.Andrew Arnott2008-09-229-80/+137
|
* Adding OAuth signing binding elements.Andrew Arnott2008-09-228-3/+215
|
* Added Realm parameter to Auth header messages.Andrew Arnott2008-09-221-22/+30
|
* Fixed up the timestamp to be OAuth compliant.Andrew Arnott2008-09-221-2/+15
|
* Refactored OAuth signing functionality into a SignedMessageBase class.Andrew Arnott2008-09-2213-127/+140
|
* Adding the binding elements necessary for basic OAuth functionality.Andrew Arnott2008-09-2120-25/+417
|
* Refactored the OAuth messages with a base class, and satisfied StyleCop.Andrew Arnott2008-09-2113-176/+408
|
* Added the 7 OAuth message types.Andrew Arnott2008-09-2112-4/+441
|
* StylCop and FxCop work.Andrew Arnott2008-09-2123-239/+532
|
* Removed a lot of DataContract references.Andrew Arnott2008-09-2011-12/+10
|
* Merge branch 'sersync'Andrew Arnott2008-09-2034-751/+1289
|\
| * Little renaming.Andrew Arnott2008-09-203-4/+5
| |
| * Removed EnsureCompleteMessageBindingElement and moved its functionality back ↵Andrew Arnott2008-09-206-52/+16
| | | | | | | | into the Channel class.
| * Worked on test coverage.Andrew Arnott2008-09-2012-104/+233
| |
| * TestDirectedMessage now derives from TestMessage.Andrew Arnott2008-09-191-44/+2
| |
| * All tests passing, with more work done.Andrew Arnott2008-09-1815-12/+148
| |
| * Fixed a few bugs and got all tests passing.Andrew Arnott2008-09-189-31/+85
| |
| * MessageDictionary mostly hooked up and most tests passing.Andrew Arnott2008-09-1822-724/+193
| |
| * Added MessageDictionary and supporting classes and tests.Andrew Arnott2008-09-1716-1/+828
| | | | | | | | Very little documentation is there until I can prove the idea works to solve our signing design problem.
* | Added spec as solution item.Andrew Arnott2008-09-151-0/+8
|/
* Renamed the ISignedOAuthMessage.Andrew Arnott2008-09-134-6/+6
|
* Stylecop fixes.Andrew Arnott2008-09-133-9/+32
|
* Simplified tests slightly.Andrew Arnott2008-09-132-7/+7
|
* Added check so Channel can guarantee that messages receive all the ↵Andrew Arnott2008-09-1316-20/+155
| | | | protections they require.
* Refactored several Messaging classes into the Messaging.Bindings namespace.Andrew Arnott2008-09-1332-83/+301
|
* Totally refactored signing, expiration and replay detection into extensible ↵Andrew Arnott2008-09-1322-344/+699
| | | | channel binding elements.
* Added a few ProtocolException-derived exception types.Andrew Arnott2008-09-137-10/+141
|
* Added tests for signed, expiring and replay protected messages.Andrew Arnott2008-09-139-4/+297
|
* Added datetime serialization tests.Andrew Arnott2008-09-132-3/+13
|
* Fixed xml spoofing bug for using DataContractSerializer to deserialize messages.Andrew Arnott2008-09-1311-16/+291
| | | | Added tests to verify correct behavior.
* Added expiring messages and replay protection support infrastructure.Andrew Arnott2008-09-126-15/+220
|
* Added infrastructure for message signing support to base Channel class.Andrew Arnott2008-09-125-5/+101
|
* Refactored Channel's virtual and abstract methods to NOT be "internal" (or ↵Andrew Arnott2008-09-114-39/+66
| | | | | | | public). This will be useful when we add message signing and verification to the Channel base class. It's also consistent with design guidelines to never have public (or internal in this case) methods be virtual or abstract so the base class has control over its operations.
* Code coverage work is as complete as our implementation will currently allow.Andrew Arnott2008-09-108-18/+284
|
* Started work on unit test code coverage of OAuthChannel.Andrew Arnott2008-09-104-8/+137
|
* Great code coverage everywhere we care except for OAuthProtocol and ↵Andrew Arnott2008-09-1013-34/+99
| | | | OAuthMessageTypeProvider.
* Code coverage work in ProtocolException.Andrew Arnott2008-09-103-1/+101
|
* Much better test coverage.Andrew Arnott2008-09-1014-44/+277
|
* Refactored the exception handling in the channel stack.Andrew Arnott2008-09-0912-136/+201
|
* Added some channel tests and fixed a bug.Andrew Arnott2008-09-096-11/+62
|
* Merge branch 'starterkit'Andrew Arnott2008-09-093-11/+43
|\ | | | | | | | | | | Conflicts: src/DotNetOAuth/Loggers/Log4NetLogger.cs
| * Added capability to construct additional loggers for areas of an app.Andrew Arnott2008-09-063-11/+43
| |
* | More channel work and testing.Andrew Arnott2008-09-0311-16/+90
| |
* | more test work, and fixed bug in Protocol.DefaultAndrew Arnott2008-09-033-41/+54
| |
* | Added more tests.Andrew Arnott2008-09-038-2/+234
| |
* | A bit of Channel refactoring.Andrew Arnott2008-09-034-50/+56
| |
* | Adjusted channel stack to be more testable.Andrew Arnott2008-09-039-80/+298
| |
* | Finished up the Channel stack and started with channel tests.Andrew Arnott2008-09-0212-34/+290
| |
* | Finished implementing the common channel sending scenarios.Andrew Arnott2008-09-023-5/+163
| |
* | Refactored Channel class into two classes.Andrew Arnott2008-09-026-103/+287
| |
* | Request/reply channel work.Andrew Arnott2008-09-026-4/+106
| |
* | Lots of design work on the channel stack.Andrew Arnott2008-09-0214-157/+577
| |
* | Implemented ProtocolMessageResponse.Send()Andrew Arnott2008-09-016-9/+86
| |
* | Moved messaging infrastructure to its own namespace.Andrew Arnott2008-09-0115-22/+25
| |