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

SHA384Managed.cs « System.Security.Cryptography « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5679038c80969029cc0d9a7f79b0c9926217a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// 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;
		}
	}
}