| 123456789101112131415161718192021222324252627 |
- //
- // System.Security.Cryptography DeriveBytes.cs
- //
- // Author:
- // Thomas Neidhart ([email protected])
- //
- using System;
- namespace System.Security.Cryptography
- {
- /// <summary>
- /// Abstract base class for all classes that derive byte information from an integer
- /// </summary>
- public abstract class DeriveBytes
- {
-
- protected DeriveBytes() {}
-
- public abstract byte[] GetBytes(int cb);
- public abstract void Reset();
-
- } // DeriveBytes
-
- } // System.Security.Cryptography
|