summaryrefslogtreecommitdiffstats
path: root/samples/OAuthServiceProvider/Code
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-06-02 12:15:54 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-06-02 12:15:54 -0700
commitf4dcdd88a5ec022a2ef0e69e52a987757d1d5696 (patch)
treeb41c3c3be98715a1531657c71eb8c26af2bf4984 /samples/OAuthServiceProvider/Code
parent2574b5f2a269220ad8a07e99394129c95ba2162e (diff)
downloadDotNetOpenAuth-f4dcdd88a5ec022a2ef0e69e52a987757d1d5696.zip
DotNetOpenAuth-f4dcdd88a5ec022a2ef0e69e52a987757d1d5696.tar.gz
DotNetOpenAuth-f4dcdd88a5ec022a2ef0e69e52a987757d1d5696.tar.bz2
Access tokens are now asymmetrically encrypted for resource server consumption and signed from the auth server.
Refresh tokens and verification codes are signed and encrypted using a private auth server symmetric secret.
Diffstat (limited to 'samples/OAuthServiceProvider/Code')
-rw-r--r--samples/OAuthServiceProvider/Code/OAuth2AuthorizationServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthServiceProvider/Code/OAuth2AuthorizationServer.cs b/samples/OAuthServiceProvider/Code/OAuth2AuthorizationServer.cs
index 695ba74..ed70a15 100644
--- a/samples/OAuthServiceProvider/Code/OAuth2AuthorizationServer.cs
+++ b/samples/OAuthServiceProvider/Code/OAuth2AuthorizationServer.cs
@@ -36,7 +36,7 @@
get { return this.nonceStore; }
}
- public RSAParameters? AccessTokenSigningPrivateKey {
+ public RSAParameters AccessTokenSigningPrivateKey {
get { return asymmetricKey; }
}