summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/Messages
Commit message (Collapse)AuthorAgeFilesLines
* Moved all the OAuth classes into its own namespace in preparation to ↵Andrew Arnott2008-11-0312-1040/+0
| | | | receiving DotNetOpenId merge.
* Renamed all the OAuth message types.Andrew Arnott2008-11-028-76/+123
|
* Fixed up class diagram.Andrew Arnott2008-11-021-16/+14
|
* StyleCop fixes.Andrew Arnott2008-11-012-7/+15
|
* Hugely refactored ServiceProvider and Consumer classes.Andrew Arnott2008-11-013-5/+31
| | | | Messages are now exposed in the method signatures instead of raw Response instances.
* Fixed up xml comment and class diagrams.Andrew Arnott2008-10-241-17/+21
|
* Applied FxCop fixes.Andrew Arnott2008-10-239-56/+147
|
* Refactored messages to try to simplify their uses and try to hide ↵Andrew Arnott2008-10-0910-31/+179
| | | | information from areas that don't need it.
* Removed TokenSecret initialization within the Consumer.Andrew Arnott2008-10-091-2/+2
|
* Renamed a few OAuth messages and a few more methods.Andrew Arnott2008-10-096-61/+84
|
* Added strong-typed request token message to sample.Andrew Arnott2008-10-075-8/+8
| | | | | 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.
* Changed the way HttpMethod is derived for signing verification.Andrew Arnott2008-10-041-11/+3
|
* Documented all members... StyleCop is now happy.Andrew Arnott2008-10-021-2/+2
|
* More public API work.Andrew Arnott2008-10-021-2/+2
|
* Exposed more message types to enable Service Provider scenarios.Andrew Arnott2008-10-029-23/+23
|
* Fixed HTTP Authorization header to not include extra parameters.Andrew Arnott2008-10-021-5/+0
| | | | Combined the AdditionalParametersInHttpRequest and ExtraData concepts
* Add/removed some TODOsAndrew Arnott2008-10-021-1/+1
|
* Fixed StyleCop issues and added a couple of HMAC signature tests.Andrew Arnott2008-10-021-0/+3
|
* Added capability to add extra fields to request token message.Andrew Arnott2008-09-281-0/+6
|
* Appendix scenario test passing (again), this time with HMAC signing of HTTP ↵Andrew Arnott2008-09-287-9/+26
| | | | requests.
* Fixed lots of StyleCop issues and refacted Consumer/Service Provider a bit.Andrew Arnott2008-09-253-9/+14
|
* Added enough token management that the Appendix A scenario test is passing ↵Andrew Arnott2008-09-256-41/+58
| | | | again.
* Fixed token secret retention bug.Andrew Arnott2008-09-241-0/+3
|
* Added logging.Andrew Arnott2008-09-241-0/+27
|
* Added a scenario test from Appendix A (incomplete but passing so far).Andrew Arnott2008-09-243-9/+9
| | | | Included in this change are a lot of fixes and additional implementation.
* Implementing and refactoring ServiceProvider and Consumer classes.Andrew Arnott2008-09-237-10/+21
| | | | Beginning to write a test for the spec's appendix A scenario.
* Implemented the PLAINTEXT and HMAC-SHA1 signature algorithms.Andrew Arnott2008-09-221-6/+35
|
* 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-2210-111/+137
|
* Adding the binding elements necessary for basic OAuth functionality.Andrew Arnott2008-09-213-40/+1
|
* Refactored the OAuth messages with a base class, and satisfied StyleCop.Andrew Arnott2008-09-2110-174/+404
|
* Added the 7 OAuth message types.Andrew Arnott2008-09-219-0/+360