Blake2bState constructor

Blake2bState({
  1. required List<int> state,
  2. required List<int> buffer,
  3. required int bufferLength,
  4. required List<int> ctr,
  5. required List<int> flag,
  6. required bool lastNode,
  7. List<int>? paddedKey,
  8. required List<int> initialState,
})

Creates a new instance of the Blake2bState class with the provided values.

Implementation

Blake2bState({
  required this.state,
  required this.buffer,
  required this.bufferLength,
  required this.ctr,
  required this.flag,
  required this.lastNode,
  this.paddedKey,
  required this.initialState,
});