From 4f2946b76c241dffad6b8962f9438a48b916ecc1 Mon Sep 17 00:00:00 2001 From: Herbert Poul Date: Mon, 20 Apr 2020 14:12:19 +0200 Subject: [PATCH] remove decrypt debugging. --- lib/src/internal/crypto_utils.dart | 5 ----- 1 file changed, 5 deletions(-) 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.');