aesCbc method

  1. @override
AesCbc aesCbc({
  1. required MacAlgorithm macAlgorithm,
  2. int secretKeyLength = 32,
})
inherited

Implementation

@override
AesCbc aesCbc({
  required MacAlgorithm macAlgorithm,
  int secretKeyLength = 32,
}) {
  return DartAesCbc(
    macAlgorithm: macAlgorithm,
    secretKeyLength: secretKeyLength,
  );
}