public abstract class MaskGenerationMethod { // Protected Constructors protected MaskGenerationMethod( ); // Public Instance Methods public abstract byte[ ] GenerateMask(byte[ ] rgbSeed, int cbReturn); }
This class creates masks used in key exchange algorithms. This is an internal class and is not instantiated directly by the programmer.