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
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Security.Cryptography/MD5.cs')
-rw-r--r--mcs/class/corlib/System.Security.Cryptography/MD5.cs44
1 files changed, 0 insertions, 44 deletions
diff --git a/mcs/class/corlib/System.Security.Cryptography/MD5.cs b/mcs/class/corlib/System.Security.Cryptography/MD5.cs
deleted file mode 100644
index 039a3f4bb1d..00000000000
--- a/mcs/class/corlib/System.Security.Cryptography/MD5.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-//
-// System.Security.Cryptography MD5 Class implementation
-//
-// Authors:
-// Matthew S. Ford (Matthew.S.Ford@Rose-Hulman.Edu)
-//
-// Copyright 2001 by Matthew S. Ford.
-//
-
-
-using System.Security.Cryptography;
-
-namespace System.Security.Cryptography {
-
- /// <summary>
- /// Common base class for all derived MD5 iplementations.
- /// </summary>
- public abstract class MD5 : HashAlgorithm {
-
- /// <summary>
- /// Called from constructor of derived class.
- /// </summary>
- protected MD5 () {
-
- }
-
- /// <summary>
- /// Creates the default derived class.
- /// </summary>
- public static new MD5 Create () {
- return new MD5CryptoServiceProvider();
- }
-
- /// <summary>
- /// Creates a new derived implementation.
- /// </summary>
- /// <param name="st">FIXME: No clue. Specifies which derived class to create?</param>
- [MonoTODO]
- public static new MD5 Create (string st) {
- return Create();
- }
- }
-}
-