Browse Source

2009-07-20 Sebastien Pouliot <[email protected]>

	* Aes.cs: Use the fully qualified name since this is not a type known
	in the default corlib (2.0 or 1.x).


svn path=/trunk/mcs/; revision=138249
Sebastien Pouliot 16 years ago
parent
commit
b8b335ca7b

+ 1 - 1
mcs/class/System.Core/System.Security.Cryptography/Aes.cs

@@ -42,7 +42,7 @@ namespace System.Security.Cryptography {
 
 		public static new Aes Create () 
 		{
-			return Create ("System.Security.Cryptography.Aes");
+			return Create ("System.Security.Cryptography.AesManaged, System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
 		}
 
 		public static new Aes Create (string algName) 

+ 5 - 0
mcs/class/System.Core/System.Security.Cryptography/ChangeLog

@@ -1,3 +1,8 @@
+2009-07-20  Sebastien Pouliot  <[email protected]>
+
+	* Aes.cs: Use the fully qualified name since this is not a type known
+	in the default corlib (2.0 or 1.x).
+
 2009-04-29  Sebastien Pouliot  <[email protected]>
 
 	* MD5Cng.cs, SHA1Cng.cs, SHA256Cng.cs, SHA256CryptoServiceProvider.cs,