System.Security.Cryptography.MaskGenerationMethod
namespace System.Security.Cryptography
{
public abstract class MaskGenerationMethod
{
protected MaskGenerationMethod();
public abstract byte[] GenerateMask(byte[] rgbSeed, int cbReturn);
}
}