Enable System.Runtime.Remoting tests on Windows
[mono.git] / mcs / class / referencesource / mscorlib / system / security / cryptography / maskgenerationmethod.cs
1 // ==++==
2 // 
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 // 
5 // ==--==
6 // <OWNER>ShawnFa</OWNER>
7 // 
8
9 namespace System.Security.Cryptography {
10     [System.Runtime.InteropServices.ComVisible(true)]
11     public abstract class MaskGenerationMethod {
12         [System.Runtime.InteropServices.ComVisible(true)]
13         abstract public byte[] GenerateMask(byte[] rgbSeed, int cbReturn);
14     }
15 }