diff options
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); |