2009-07-20 Sebastien Pouliot <sebastien@ximian.com>
authorSebastien Pouliot <sebastien@ximian.com>
Tue, 21 Jul 2009 00:55:39 +0000 (00:55 -0000)
committerSebastien Pouliot <sebastien@ximian.com>
Tue, 21 Jul 2009 00:55:39 +0000 (00:55 -0000)
* 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

mcs/class/System.Core/System.Security.Cryptography/Aes.cs
mcs/class/System.Core/System.Security.Cryptography/ChangeLog

index 0c8356578d142a969fbeddfa510dd6025961052b..d65743ab2ab35148277f639e6aecb72e534d0b84 100644 (file)
@@ -42,7 +42,7 @@ namespace System.Security.Cryptography {
 \r
                public static new Aes Create () \r
                {\r
-                       return Create ("System.Security.Cryptography.Aes");\r
+                       return Create ("System.Security.Cryptography.AesManaged, System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");\r
                }\r
 \r
                public static new Aes Create (string algName) \r
index 38f1c36bff973542d8eb430e464b3ac59d8b8d36..e6ff7c2e5968bcfd55acc1149edeaa35e30857d8 100644 (file)
@@ -1,3 +1,8 @@
+2009-07-20  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * 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  <sebastien@ximian.com>
 
        * MD5Cng.cs, SHA1Cng.cs, SHA256Cng.cs, SHA256CryptoServiceProvider.cs,