DartAesCbc constructor
const
DartAesCbc({
- required MacAlgorithm macAlgorithm,
- int secretKeyLength = 32,
Implementation
const DartAesCbc({required this.macAlgorithm, this.secretKeyLength = 32})
: assert(secretKeyLength == 16 ||
secretKeyLength == 24 ||
secretKeyLength == 32),
super.constructor();