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/SHA384Managed.cs')
-rw-r--r--mcs/class/corlib/System.Security.Cryptography/SHA384Managed.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/mcs/class/corlib/System.Security.Cryptography/SHA384Managed.cs b/mcs/class/corlib/System.Security.Cryptography/SHA384Managed.cs
deleted file mode 100644
index d5679038c80..00000000000
--- a/mcs/class/corlib/System.Security.Cryptography/SHA384Managed.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// System.Security.Cryptography.SHA384Managed.cs
-//
-// Authors:
-// Dan Lewis (dihlewis@yahoo.co.uk)
-//
-// (C) 2002
-//
-// Stubbed.
-//
-
-using System;
-
-namespace System.Security.Cryptography {
-
- [MonoTODO]
- public class SHA384Managed : SHA384 {
- public SHA384Managed () {
- }
-
- public override void Initialize () {
- }
-
- // protected
-
- protected override void HashCore (byte[] rgb, int start, int count) {
- }
-
- protected override byte[] HashFinal () {
- return null;
- }
- }
-}