Wed Nov 14 16:30:27 CET 2001 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System.Security.Cryptography / DeriveBytes.cs
1 //\r
2 // System.Security.Cryptography DeriveBytes.cs\r
3 //\r
4 // Author:\r
5 //   Thomas Neidhart (tome@sbox.tugraz.at)\r
6 //\r
7 \r
8 using System;\r
9 \r
10 namespace System.Security.Cryptography\r
11 {\r
12 \r
13         /// <summary>\r
14         /// Abstract base class for all classes that derive byte information from an integer\r
15         /// </summary>\r
16         public abstract class DeriveBytes\r
17         {\r
18         \r
19                 protected DeriveBytes() {}\r
20                 \r
21                 public abstract byte[] GetBytes(int cb);\r
22 \r
23                 public abstract void Reset();\r
24                 \r
25         } // DeriveBytes\r
26         \r
27 } // System.Security.Cryptography\r