Blake2b384 Constructor
Assembly: Rebex.Security.dll (version 7.0.9313)
Blake2b384(Byte[])
Initializes a new instance of the Blake2b class.
Declaration
  public Blake2b384(byte[] key)
 
Parameters
  
    
      | Type | Name | Description | 
  
  
    
      | Byte[] | key | Key to use in HMAC calculation. 
The keymust be a 0 - 64 bytes long array or null. When a null value is provided, the key is treated as an empty array.
When thekeyis null or an empty array, the instance will calculate hashes.
When thekeyis 1 - 64 bytes long, the instance will calculate message authentication codes (HMAC).
An instance of the Blake2b384 class creates, uses, and clears a copy of thekey.
An instance of the Blake2b384 class is not the owner of thekeyand thekeywill not be cleared when the Dispose method is called.
The owner of thekeyshould clear the key. | 
  
Blake2b384()
Initializes a new instance of the Blake2b384 class.
Declaration