2002-10-25 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / corlib / System.Security.Cryptography / SHA512Managed.cs
1 //\r
2 // System.Security.Cryptography.SHA512Managed.cs\r
3 //\r
4 // Authors:\r
5 //   Dan Lewis (dihlewis@yahoo.co.uk)\r
6 //\r
7 // (C) 2002\r
8 //\r
9 // Stubbed.\r
10 //\r
11 \r
12 using System;\r
13 \r
14 namespace System.Security.Cryptography {\r
15         \r
16         [MonoTODO]\r
17         public class SHA512Managed : SHA512 {\r
18                 public SHA512Managed () {\r
19                 }\r
20 \r
21                 public override void Initialize () {\r
22                 }\r
23 \r
24                 // protected\r
25 \r
26                 protected override void HashCore (byte[] rgb, int start, int count) {\r
27                 }\r
28 \r
29                 protected override byte[] HashFinal () {\r
30                         return null;\r
31                 }\r
32         }\r
33 }\r