Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Changed namepace and project names in preparation for merge with DotNetOpenId. | Andrew Arnott | 2008-11-04 | 37 | -4215/+0 |
| | |||||
* | Moved all the OAuth classes into its own namespace in preparation to ↵ | Andrew Arnott | 2008-11-03 | 3 | -3/+2 |
| | | | | receiving DotNetOpenId merge. | ||||
* | Moved the Google Consumer app-specific class into a new "sample" project. | Andrew Arnott | 2008-11-03 | 2 | -4/+8 |
| | |||||
* | StyleCop fixes. | Andrew Arnott | 2008-11-01 | 2 | -47/+64 |
| | |||||
* | Hugely refactored ServiceProvider and Consumer classes. | Andrew Arnott | 2008-11-01 | 2 | -0/+36 |
| | | | | Messages are now exposed in the method signatures instead of raw Response instances. | ||||
* | Made the Channel on the Service Provider public in preparation for some ↵ | Andrew Arnott | 2008-11-01 | 2 | -15/+12 |
| | | | | refactoring. | ||||
* | Applied FxCop fixes. | Andrew Arnott | 2008-10-23 | 17 | -53/+135 |
| | |||||
* | Fixed descriptive comments. | Andrew Arnott | 2008-10-09 | 1 | -1/+1 |
| | |||||
* | Removed ConsumerBase.ConsumerSecret, since the token manager can provide that. | Andrew Arnott | 2008-10-09 | 1 | -4/+3 |
| | |||||
* | Enhanced logging of message tranferrals. | Andrew Arnott | 2008-10-08 | 1 | -1/+2 |
| | |||||
* | Reworked cloning of signing binding elements, and a bit of the appendix ↵ | Andrew Arnott | 2008-10-08 | 1 | -1/+7 |
| | | | | sample test. | ||||
* | Moved SigningVerificationCallback handling to the OAuthChannel. | Andrew Arnott | 2008-10-08 | 1 | -1/+1 |
| | |||||
* | Added strong-typed request token message to sample. | Andrew Arnott | 2008-10-07 | 2 | -6/+7 |
| | | | | | This proves that messages can be derived from and tailored to provide type-safe additions where the OAuth protocol permits it. As can be seen, several more types and members had to be made public for this to work. | ||||
* | Added more intelligent URI query stripping to protect against repeat ↵ | Andrew Arnott | 2008-10-04 | 1 | -0/+21 |
| | | | | attempts from ASPX pages. | ||||
* | Added some facility for working with WCF services. | Andrew Arnott | 2008-10-04 | 1 | -0/+16 |
| | |||||
* | Changed the way HttpMethod is derived for signing verification. | Andrew Arnott | 2008-10-04 | 3 | -0/+17 |
| | |||||
* | Enhanced API to better support Desktop App consumers. | Andrew Arnott | 2008-10-02 | 1 | -0/+19 |
| | |||||
* | Documented all members... StyleCop is now happy. | Andrew Arnott | 2008-10-02 | 1 | -0/+4 |
| | |||||
* | Public API work. | Andrew Arnott | 2008-10-02 | 1 | -1/+1 |
| | |||||
* | StyleCop work and adding support for including extra parameters where the ↵ | Andrew Arnott | 2008-10-02 | 4 | -2/+35 |
| | | | | spec allows it. | ||||
* | Split up the two OAuth message type providers into Consumer and Service ↵ | Andrew Arnott | 2008-10-02 | 1 | -19/+56 |
| | | | | | | 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 Arnott | 2008-10-02 | 1 | -39/+9 |
| | | | | | | 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. | ||||
* | Fixed HTTP Authorization header to not include extra parameters. | Andrew Arnott | 2008-10-02 | 3 | -8/+23 |
| | | | | Combined the AdditionalParametersInHttpRequest and ExtraData concepts | ||||
* | Fixed StyleCop issues and added a couple of HMAC signature tests. | Andrew Arnott | 2008-10-02 | 1 | -0/+5 |
| | |||||
* | Added capability to add extra fields to request token message. | Andrew Arnott | 2008-09-28 | 1 | -0/+14 |
| | |||||
* | Added logging to library. | Andrew Arnott | 2008-09-28 | 1 | -0/+4 |
| | |||||
* | Refactored ServiceProviderEndpoints into ServiceProviderDescription and made ↵ | Andrew Arnott | 2008-09-28 | 6 | -6/+6 |
| | | | | several classes and interfaces public. | ||||
* | Appendix scenario test passing (again), this time with HMAC signing of HTTP ↵ | Andrew Arnott | 2008-09-28 | 5 | -13/+106 |
| | | | | requests. | ||||
* | Added SigningBindingElementChain class to enable the use of several signers ↵ | Andrew Arnott | 2008-09-27 | 3 | -12/+35 |
| | | | | based on the situation. | ||||
* | Added final protected resource request to Appendix scenario test. | Andrew Arnott | 2008-09-27 | 5 | -5/+131 |
| | |||||
* | Added capability to send the final authorized request for protected resources. | Andrew Arnott | 2008-09-26 | 1 | -23/+29 |
| | |||||
* | Fixed lots of StyleCop issues and refacted Consumer/Service Provider a bit. | Andrew Arnott | 2008-09-25 | 1 | -2/+31 |
| | |||||
* | Added facility for SPs to inject extra information into messages prior to ↵ | Andrew Arnott | 2008-09-24 | 2 | -0/+12 |
| | | | | signature verification. | ||||
* | Added a scenario test from Appendix A (incomplete but passing so far). | Andrew Arnott | 2008-09-24 | 5 | -4/+124 |
| | | | | Included in this change are a lot of fixes and additional implementation. | ||||
* | Implementing and refactoring ServiceProvider and Consumer classes. | Andrew Arnott | 2008-09-23 | 1 | -7/+15 |
| | | | | Beginning to write a test for the spec's appendix A scenario. | ||||
* | Implemented the PLAINTEXT and HMAC-SHA1 signature algorithms. | Andrew Arnott | 2008-09-22 | 2 | -0/+12 |
| | |||||
* | Refactored OAuth signing functionality into a SignedMessageBase class. | Andrew Arnott | 2008-09-22 | 2 | -5/+1 |
| | |||||
* | Adding the binding elements necessary for basic OAuth functionality. | Andrew Arnott | 2008-09-21 | 7 | -1/+252 |
| | |||||
* | Refactored the OAuth messages with a base class, and satisfied StyleCop. | Andrew Arnott | 2008-09-21 | 1 | -1/+1 |
| | |||||
* | StylCop and FxCop work. | Andrew Arnott | 2008-09-21 | 12 | -127/+415 |
| | |||||
* | Removed a lot of DataContract references. | Andrew Arnott | 2008-09-20 | 2 | -2/+6 |
| | |||||
* | Little renaming. | Andrew Arnott | 2008-09-20 | 2 | -3/+3 |
| | |||||
* | Removed EnsureCompleteMessageBindingElement and moved its functionality back ↵ | Andrew Arnott | 2008-09-20 | 3 | -47/+6 |
| | | | | into the Channel class. | ||||
* | Worked on test coverage. | Andrew Arnott | 2008-09-20 | 3 | -23/+12 |
| | |||||
* | All tests passing, with more work done. | Andrew Arnott | 2008-09-18 | 8 | -7/+97 |
| | |||||
* | Fixed a few bugs and got all tests passing. | Andrew Arnott | 2008-09-18 | 4 | -5/+57 |
| | |||||
* | MessageDictionary mostly hooked up and most tests passing. | Andrew Arnott | 2008-09-18 | 8 | -618/+105 |
| | |||||
* | Added MessageDictionary and supporting classes and tests. | Andrew Arnott | 2008-09-17 | 9 | -0/+450 |
| | | | | Very little documentation is there until I can prove the idea works to solve our signing design problem. | ||||
* | Renamed the ISignedOAuthMessage. | Andrew Arnott | 2008-09-13 | 1 | -2/+2 |
| | |||||
* | Stylecop fixes. | Andrew Arnott | 2008-09-13 | 2 | -4/+23 |
| | |||||
* | Added check so Channel can guarantee that messages receive all the ↵ | Andrew Arnott | 2008-09-13 | 6 | -8/+96 |
| | | | | protections they require. | ||||
* | Refactored several Messaging classes into the Messaging.Bindings namespace. | Andrew Arnott | 2008-09-13 | 15 | -32/+217 |
| | |||||
* | Totally refactored signing, expiration and replay detection into extensible ↵ | Andrew Arnott | 2008-09-13 | 10 | -134/+345 |
| | | | | channel binding elements. | ||||
* | Added a few ProtocolException-derived exception types. | Andrew Arnott | 2008-09-13 | 5 | -7/+135 |
| | |||||
* | Fixed xml spoofing bug for using DataContractSerializer to deserialize messages. | Andrew Arnott | 2008-09-13 | 5 | -10/+169 |
| | | | | Added tests to verify correct behavior. | ||||
* | Added expiring messages and replay protection support infrastructure. | Andrew Arnott | 2008-09-12 | 5 | -15/+218 |
| | |||||
* | Added infrastructure for message signing support to base Channel class. | Andrew Arnott | 2008-09-12 | 4 | -5/+100 |
| | |||||
* | Refactored Channel's virtual and abstract methods to NOT be "internal" (or ↵ | Andrew Arnott | 2008-09-11 | 1 | -31/+58 |
| | | | | | | | 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 Arnott | 2008-09-10 | 1 | -0/+14 |
| | |||||
* | Great code coverage everywhere we care except for OAuthProtocol and ↵ | Andrew Arnott | 2008-09-10 | 4 | -8/+12 |
| | | | | OAuthMessageTypeProvider. | ||||
* | Code coverage work in ProtocolException. | Andrew Arnott | 2008-09-10 | 1 | -1/+6 |
| | |||||
* | Much better test coverage. | Andrew Arnott | 2008-09-10 | 7 | -36/+62 |
| | |||||
* | Refactored the exception handling in the channel stack. | Andrew Arnott | 2008-09-09 | 5 | -47/+189 |
| | |||||
* | Added some channel tests and fixed a bug. | Andrew Arnott | 2008-09-09 | 1 | -1/+1 |
| | |||||
* | More channel work and testing. | Andrew Arnott | 2008-09-03 | 4 | -6/+15 |
| | |||||
* | Added more tests. | Andrew Arnott | 2008-09-03 | 2 | -0/+14 |
| | |||||
* | A bit of Channel refactoring. | Andrew Arnott | 2008-09-03 | 1 | -20/+26 |
| | |||||
* | Adjusted channel stack to be more testable. | Andrew Arnott | 2008-09-03 | 2 | -27/+164 |
| | |||||
* | Finished up the Channel stack and started with channel tests. | Andrew Arnott | 2008-09-02 | 3 | -28/+71 |
| | |||||
* | Finished implementing the common channel sending scenarios. | Andrew Arnott | 2008-09-02 | 2 | -1/+138 |
| | |||||
* | Refactored Channel class into two classes. | Andrew Arnott | 2008-09-02 | 3 | -90/+110 |
| | |||||
* | Request/reply channel work. | Andrew Arnott | 2008-09-02 | 5 | -4/+105 |
| | |||||
* | Lots of design work on the channel stack. | Andrew Arnott | 2008-09-02 | 11 | -139/+545 |
| | |||||
* | Implemented ProtocolMessageResponse.Send() | Andrew Arnott | 2008-09-01 | 3 | -8/+72 |
| | |||||
* | Moved messaging infrastructure to its own namespace. | Andrew Arnott | 2008-09-01 | 10 | -0/+680 |