Initializes the Skein hash instance.
Namespace: LLCryptoLib.HashAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public Skein(
int stateSize,
int outputSize
) |
Visual Basic |
---|
Public Sub New ( _
stateSize As Integer, _
outputSize As Integer _
) |
Visual C++ |
---|
public:
Skein(
int stateSize,
int outputSize
) |
Parameters
- stateSize
- Type: System..::..Int32
The internal state size of the hash in bits.
Supported values are 256, 512, and 1024.
- outputSize
- Type: System..::..Int32
The output size of the hash in bits.
Output size must be divisible by 8 and greater than zero.
See Also