MaskGenerationMethod.cs 428 B

1234567891011121314151617181920212223
  1. //
  2. // MaskGenerationMethod.cs: Handles mask generation.
  3. //
  4. // Author:
  5. // Sebastien Pouliot ([email protected])
  6. //
  7. // (C) 2002 Motus Technologies Inc. (http://www.motus.com)
  8. //
  9. using System;
  10. using System.Security.Cryptography;
  11. namespace System.Security.Cryptography
  12. {
  13. public abstract class MaskGenerationMethod
  14. {
  15. protected MaskGenerationMethod () {}
  16. public abstract byte[] GenerateMask (byte[] rgbSeed, int cbReturn);
  17. }
  18. }