using System; using System.Runtime.InteropServices; namespace System.Security.Cryptography { /// Represents the abstract class from which all mask generator algorithms must derive. // Token: 0x02000511 RID: 1297 [ComVisible(true)] public abstract class MaskGenerationMethod { /// When overridden in a derived class, generates a mask with the specified length using the specified random seed. /// A randomly generated mask whose length is equal to the parameter. /// The random seed to use to compute the mask. /// The length of the generated mask in bytes. // Token: 0x06002FB3 RID: 12211 [ComVisible(true)] public abstract byte[] GenerateMask(byte[] rgbSeed, int cbReturn); } }