DeriveBytes.cs 517 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Security.Cryptography DeriveBytes.cs
  3. //
  4. // Author:
  5. // Thomas Neidhart ([email protected])
  6. //
  7. using System;
  8. namespace System.Security.Cryptography
  9. {
  10. /// <summary>
  11. /// Abstract base class for all classes that derive byte information from an integer
  12. /// </summary>
  13. public abstract class DeriveBytes
  14. {
  15. protected DeriveBytes() {}
  16. public abstract byte[] GetBytes(int cb);
  17. public abstract void Reset();
  18. } // DeriveBytes
  19. } // System.Security.Cryptography