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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.