diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-02 12:15:54 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-02 12:15:54 -0700 |
commit | f4dcdd88a5ec022a2ef0e69e52a987757d1d5696 (patch) | |
tree | b41c3c3be98715a1531657c71eb8c26af2bf4984 /samples/OAuthServiceProvider/Code | |
parent | 2574b5f2a269220ad8a07e99394129c95ba2162e (diff) | |
download | DotNetOpenAuth-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.cs | 2 |
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; } } |