summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-08-18 23:31:29 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-08-18 23:45:00 -0700
commit47d2b1ff0ceee960decae058cc1e32a47faed83f (patch)
tree4f07cf5565ea5977ade3aaef7fe52b81bf8a12e0
parent2cc14da7d20b09066b915f63e59466187b2317f7 (diff)
downloadDotNetOpenAuth-47d2b1ff0ceee960decae058cc1e32a47faed83f.zip
DotNetOpenAuth-47d2b1ff0ceee960decae058cc1e32a47faed83f.tar.gz
DotNetOpenAuth-47d2b1ff0ceee960decae058cc1e32a47faed83f.tar.bz2
Fixed StyleCop messages.
-rw-r--r--src/DotNetOpenAuth/OpenId/DiffieHellmanUtilities.cs2
-rw-r--r--src/DotNetOpenAuth/OpenId/HmacShaAssociation.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth/OpenId/DiffieHellmanUtilities.cs b/src/DotNetOpenAuth/OpenId/DiffieHellmanUtilities.cs
index 2507f38..e4fea46 100644
--- a/src/DotNetOpenAuth/OpenId/DiffieHellmanUtilities.cs
+++ b/src/DotNetOpenAuth/OpenId/DiffieHellmanUtilities.cs
@@ -26,7 +26,7 @@ namespace DotNetOpenAuth.OpenId {
new DHSha(new SHA384Managed(), protocol => protocol.Args.SessionType.DH_SHA384),
new DHSha(new SHA256Managed(), protocol => protocol.Args.SessionType.DH_SHA256),
new DHSha(new SHA1Managed(), protocol => protocol.Args.SessionType.DH_SHA1),
- }.ToArray();
+ } .ToArray();
/// <summary>
/// Finds the hashing algorithm to use given an openid.session_type value.
diff --git a/src/DotNetOpenAuth/OpenId/HmacShaAssociation.cs b/src/DotNetOpenAuth/OpenId/HmacShaAssociation.cs
index ca46b5b..4c31100 100644
--- a/src/DotNetOpenAuth/OpenId/HmacShaAssociation.cs
+++ b/src/DotNetOpenAuth/OpenId/HmacShaAssociation.cs
@@ -50,7 +50,7 @@ namespace DotNetOpenAuth.OpenId {
GetAssociationType = protocol => protocol.Args.SignatureAlgorithm.HMAC_SHA1,
BaseHashAlgorithm = new SHA1Managed(),
},
- }.ToArray();
+ } .ToArray();
/// <summary>
/// The specific variety of HMAC-SHA this association is based on (whether it be HMAC-SHA1, HMAC-SHA256, etc.)