ChaChaEngine.BlockLength Property

Gets the number of native words addressable in each block.

Definition

Namespace: Numerics.NET.Random.Engines
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
public int BlockLength {
	get;
 }

Property Value

Int32
The block length in words. This is algorithm-specific and constant for a given engine type.

Implements

IBlockEngine<T>.BlockLength

Remarks

The block length determines how many T values are accessible via Output(Int32) before requiring a call to AdvanceBlock() to move to the next entropy window.

See Also