PKCS1MaskGenerationMethod.GenerateMask(Byte[], Int32) Method

Definition

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