diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-26 12:52:06 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-26 12:52:06 -0700 |
commit | b9ae2ab289e2b9708ea3cce055ac484b00246a8a (patch) | |
tree | 28ef380a84c743075cbddf3417556e1d1bb37f49 /src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/StandardAccessTokenAnalyzer.cs | |
parent | 3d37ff45cab6838d80b22e6b782a0b9b4c2f4aeb (diff) | |
download | DotNetOpenAuth-b9ae2ab289e2b9708ea3cce055ac484b00246a8a.zip DotNetOpenAuth-b9ae2ab289e2b9708ea3cce055ac484b00246a8a.tar.gz DotNetOpenAuth-b9ae2ab289e2b9708ea3cce055ac484b00246a8a.tar.bz2 |
Lots of StyleCop fixes.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/StandardAccessTokenAnalyzer.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/StandardAccessTokenAnalyzer.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/StandardAccessTokenAnalyzer.cs b/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/StandardAccessTokenAnalyzer.cs index 3bd0324..6137cff 100644 --- a/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/StandardAccessTokenAnalyzer.cs +++ b/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/StandardAccessTokenAnalyzer.cs @@ -31,8 +31,9 @@ namespace DotNetOpenAuth.OAuth2 { } /// <summary> - /// Initializes a new instance of the <see cref="StandardAccessTokenAnalyzer"/> class. + /// Initializes a new instance of the <see cref="StandardAccessTokenAnalyzer" /> class. /// </summary> + /// <param name="symmetricKeyStore">The symmetric key store.</param> public StandardAccessTokenAnalyzer(ICryptoKeyStore symmetricKeyStore) { Requires.NotNull(symmetricKeyStore, "symmetricKeyStore"); this.SymmetricKeyStore = symmetricKeyStore; @@ -50,6 +51,12 @@ namespace DotNetOpenAuth.OAuth2 { /// <value>The resource server private encryption key.</value> public RSACryptoServiceProvider ResourceServerPrivateEncryptionKey { get; private set; } + /// <summary> + /// Gets the symmetric key store. + /// </summary> + /// <value> + /// The symmetric key store. + /// </value> public ICryptoKeyStore SymmetricKeyStore { get; private set; } /// <summary> |