PKCS1MaskGenerationMethod.GenerateMask(Byte[], Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Generates and returns a mask from the specified random seed of the specified length.
public:
override cli::array <System::Byte> ^ GenerateMask(cli::array <System::Byte> ^ rgbSeed, int cbReturn);
public override byte[] GenerateMask (byte[] rgbSeed, int cbReturn);
override this.GenerateMask : byte[] * int -> byte[]
Public Overrides Function GenerateMask (rgbSeed As Byte(), cbReturn As Integer) As Byte()
Parameters
- rgbSeed
- Byte[]
The random seed to use for computing the mask.
- cbReturn
- Int32
The length of the generated mask in bytes.
Returns
Byte[]
A randomly generated mask whose length is equal to the cbReturn
parameter.
Remarks
Masks are used in key exchange computation and generally are not used by applications.
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.