summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/ServiceProvider.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-24 22:51:19 -0700
committerAndrew <andrewarnott@gmail.com>2008-09-24 22:51:19 -0700
commite99268dcde5f942a2577a2d4d271febf991b6fa1 (patch)
tree5c328335227fe0edcb9fe029add6735156d063cd /src/DotNetOAuth/ServiceProvider.cs
parent48409e1795dbdf3330dae3174bd0c14bb97341c7 (diff)
downloadDotNetOpenAuth-e99268dcde5f942a2577a2d4d271febf991b6fa1.zip
DotNetOpenAuth-e99268dcde5f942a2577a2d4d271febf991b6fa1.tar.gz
DotNetOpenAuth-e99268dcde5f942a2577a2d4d271febf991b6fa1.tar.bz2
Added facility for SPs to inject extra information into messages prior to signature verification.
Diffstat (limited to 'src/DotNetOAuth/ServiceProvider.cs')
-rw-r--r--src/DotNetOAuth/ServiceProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth/ServiceProvider.cs b/src/DotNetOAuth/ServiceProvider.cs
index 217d064..327e5ca 100644
--- a/src/DotNetOAuth/ServiceProvider.cs
+++ b/src/DotNetOAuth/ServiceProvider.cs
@@ -33,7 +33,7 @@ namespace DotNetOAuth {
/// Initializes a new instance of the <see cref="ServiceProvider"/> class.
/// </summary>
public ServiceProvider() {
- SigningBindingElementBase signingElement = new PlainTextSigningBindingElement();
+ SigningBindingElementBase signingElement = new PlainTextSigningBindingElement(/*TODO*/);
INonceStore store = new NonceMemoryStore(StandardExpirationBindingElement.DefaultMaximumMessageAge);
this.Channel = new OAuthChannel(signingElement, store);
}