Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/class
diff options
context:
space:
mode:
authorDuncan Mak <duncan@mono-cvs.ximian.com>2002-10-12 06:02:24 +0400
committerDuncan Mak <duncan@mono-cvs.ximian.com>2002-10-12 06:02:24 +0400
commitd3cfe3165548db07711d0fbd840b9b70418734e2 (patch)
tree33c01e3f1659412488a8e852e05cc23c49a80384 /mcs/class
parentd8299b0ed37e93971f7c66a055194a51d319a041 (diff)
2002-10-11 Duncan Mak <duncan@ximian.com>
* CSharpCodeProvider.cs: Fix constructor visibility. * unix.args: Added System.Security.Cryptography.CryptoConfig. * DESCryptoServiceProvider.cs: Removed unnecessary Dispose (). svn path=/trunk/mcs/; revision=8196
Diffstat (limited to 'mcs/class')
-rw-r--r--mcs/class/System/Microsoft.CSharp/CSharpCodeProvider.cs2
-rw-r--r--mcs/class/System/Microsoft.CSharp/ChangeLog4
-rw-r--r--mcs/class/corlib/ChangeLog4
-rw-r--r--mcs/class/corlib/System.Security.Cryptography/ChangeLog4
-rw-r--r--mcs/class/corlib/System.Security.Cryptography/DESCryptoServiceProvider.cs4
-rwxr-xr-xmcs/class/corlib/unix.args1
6 files changed, 14 insertions, 5 deletions
diff --git a/mcs/class/System/Microsoft.CSharp/CSharpCodeProvider.cs b/mcs/class/System/Microsoft.CSharp/CSharpCodeProvider.cs
index c01d965ed6d..5f59d5779ab 100644
--- a/mcs/class/System/Microsoft.CSharp/CSharpCodeProvider.cs
+++ b/mcs/class/System/Microsoft.CSharp/CSharpCodeProvider.cs
@@ -19,7 +19,7 @@ namespace Microsoft.CSharp
//
// Constructors
//
- CSharpCodeProvider()
+ public CSharpCodeProvider()
{
}
diff --git a/mcs/class/System/Microsoft.CSharp/ChangeLog b/mcs/class/System/Microsoft.CSharp/ChangeLog
index 78d2a1090ad..8e4d43b78ff 100644
--- a/mcs/class/System/Microsoft.CSharp/ChangeLog
+++ b/mcs/class/System/Microsoft.CSharp/ChangeLog
@@ -1,3 +1,7 @@
+2002-10-11 Duncan Mak <duncan@ximian.com>
+
+ * CSharpCodeProvider.cs: Fix constructor visibility.
+
2002-05-28 Daniel Stodden <stodden@in.tum.de>
* ChangeLog: added
diff --git a/mcs/class/corlib/ChangeLog b/mcs/class/corlib/ChangeLog
index c57126462ed..42ebb319456 100644
--- a/mcs/class/corlib/ChangeLog
+++ b/mcs/class/corlib/ChangeLog
@@ -1,3 +1,7 @@
+2002-10-11 Duncan Mak <duncan@ximian.com>
+
+ * unix.args: Added System.Security.Cryptography.CryptoConfig.
+
2002-10-08 Miguel de Icaza <miguel@ximian.com>
* Mono/Runtime.cs: New file.
diff --git a/mcs/class/corlib/System.Security.Cryptography/ChangeLog b/mcs/class/corlib/System.Security.Cryptography/ChangeLog
index 625fdccbc9f..12334439df5 100644
--- a/mcs/class/corlib/System.Security.Cryptography/ChangeLog
+++ b/mcs/class/corlib/System.Security.Cryptography/ChangeLog
@@ -1,3 +1,7 @@
+2002-10-11 Duncan Mak <duncan@ximian.com>
+
+ * DESCryptoServiceProvider.cs: Removed unnecessary Dispose ().
+
2002-10-11 Sebastien Pouliot <spouliot@videotron.ca>
* DES.cs: Create() using CryptoConfig, fix #30256
diff --git a/mcs/class/corlib/System.Security.Cryptography/DESCryptoServiceProvider.cs b/mcs/class/corlib/System.Security.Cryptography/DESCryptoServiceProvider.cs
index 35a4878aad8..86842abd57c 100644
--- a/mcs/class/corlib/System.Security.Cryptography/DESCryptoServiceProvider.cs
+++ b/mcs/class/corlib/System.Security.Cryptography/DESCryptoServiceProvider.cs
@@ -59,10 +59,6 @@ namespace System.Security.Cryptography {
tmpBlock = new byte [DESCore.BLOCK_BYTE_SIZE];
}
- void System.IDisposable.Dispose ()
- {
- }
-
public virtual bool CanTransformMultipleBlocks {
get { return false; }
}
diff --git a/mcs/class/corlib/unix.args b/mcs/class/corlib/unix.args
index 237e145dd97..248b0ab4c83 100755
--- a/mcs/class/corlib/unix.args
+++ b/mcs/class/corlib/unix.args
@@ -600,6 +600,7 @@ System.Security.Cryptography/CipherMode.cs
System.Security.Cryptography/CryptoAPITransform.cs
System.Security.Cryptography/CryptographicException.cs
System.Security.Cryptography/CryptographicUnexpectedOperationExcpetion.cs
+System.Security.Cryptography/CryptoConfig.cs
System.Security.Cryptography/CryptoStream.cs
System.Security.Cryptography/CryptoStreamMode.cs
System.Security.Cryptography/CspParameters.cs