diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-09-02 21:01:43 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-09-02 21:01:43 -0700 |
commit | 7912ebb1db441f959d3146f7df67b6f22cc5a4cc (patch) | |
tree | 8c52747f75d3202d77022368fee452c100ae1718 /src | |
parent | 47b0071a7f4f3437ab92f3cc427cd52cfa4d6ff9 (diff) | |
download | DotNetOpenAuth-7912ebb1db441f959d3146f7df67b6f22cc5a4cc.zip DotNetOpenAuth-7912ebb1db441f959d3146f7df67b6f22cc5a4cc.tar.gz DotNetOpenAuth-7912ebb1db441f959d3146f7df67b6f22cc5a4cc.tar.bz2 |
Minor comment fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/DotNetOpenAuth.csproj | 1 | ||||
-rw-r--r-- | src/DotNetOpenAuth/Messaging/MessagingUtilities.cs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/DotNetOpenAuth.csproj b/src/DotNetOpenAuth/DotNetOpenAuth.csproj index 63325d6..09623f4 100644 --- a/src/DotNetOpenAuth/DotNetOpenAuth.csproj +++ b/src/DotNetOpenAuth/DotNetOpenAuth.csproj @@ -740,6 +740,7 @@ http://opensource.org/licenses/ms-pl.html <EmbeddedResource Include="Messaging\MessagingStrings.resx"> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>MessagingStrings.Designer.cs</LastGenOutput> + <SubType>Designer</SubType> </EmbeddedResource> <EmbeddedResource Include="OAuth\OAuthStrings.resx"> <Generator>ResXFileCodeGenerator</Generator> diff --git a/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs b/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs index 7d0b913..6c0fb3a 100644 --- a/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs +++ b/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs @@ -506,7 +506,7 @@ namespace DotNetOpenAuth.Messaging { /// Encrypts a byte buffer. /// </summary> /// <param name="buffer">The buffer to encrypt.</param> - /// <param name="key">The symmetric secret to use to encrypt the buffer. Allowed values are 128, 192, and 256.</param> + /// <param name="key">The symmetric secret to use to encrypt the buffer. Allowed values are 128, 192, or 256 bytes in length.</param> /// <returns>The encrypted buffer</returns> internal static byte[] Encrypt(byte[] buffer, byte[] key) { SymmetricAlgorithm crypto = CreateSymmetricAlgorithm(key); |