* 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
@@ -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)
@@ -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,