Blake2b Constructor
Namespace: Rebex.Security.Cryptography
Assembly: Rebex.Security.dll (version 7.0.9083)
Blake2b(Int32, Byte[])
Initializes a new instance of the Blake2b class.
Declaration
public Blake2b(int hashSizeInBytes, byte[] key)
Parameters
Type | Name | Description |
---|---|---|
Int32 | hashSizeInBytes | Output hash size in bytes. The hash size must be a value between 1 and 64 bytes. It is strongly recommended to use a hash size of 32 bytes or more. |
Byte[] | key | Key to use in HMAC calculation.
The |
Blake2b(Int32)
Initializes a new instance of the Blake2b class.
Declaration
public Blake2b(int hashSizeInBytes)
Parameters
Type | Name | Description |
---|---|---|
Int32 | hashSizeInBytes | Output hash size in bytes. The hash size must be a value between 1 and 64 bytes. It is strongly recommended to use a hash size of 32 bytes or more. |