diff --git a/lib/src/internal/crypto_utils.dart b/lib/src/internal/crypto_utils.dart index c7254ec..3b59c20 100644 --- a/lib/src/internal/crypto_utils.dart +++ b/lib/src/internal/crypto_utils.dart @@ -88,13 +88,8 @@ class AesHelper { final out = Uint8List(inp.lengthInBytes); _logger.finest('Starting processBlocks. (${inp.lengthInBytes})'); - var twoPercent = inp.lengthInBytes ~/ 100 * 2; for (var offset = 0; offset < inp.lengthInBytes;) { offset += cipher.processBlock(inp, offset, out, offset); - if (offset > twoPercent) { - _logger.finest('> 2% done. ($offset)'); - twoPercent = inp.lengthInBytes; - } } _logger.finest('Done processBlocks.');