DartXchacha20 constructor

DartXchacha20({
  1. required MacAlgorithm macAlgorithm,
  2. Random? random,
})

Constructs Xchacha20 with any MacAlgorithm.

Implementation

DartXchacha20({
  required this.macAlgorithm,
  super.random,
}) : super.constructor();