diff --git a/src/UglyToad.PdfPig/Encryption/AesEncryptionHelper.cs b/src/UglyToad.PdfPig/Encryption/AesEncryptionHelper.cs index f572a25d..a4cf76bf 100644 --- a/src/UglyToad.PdfPig/Encryption/AesEncryptionHelper.cs +++ b/src/UglyToad.PdfPig/Encryption/AesEncryptionHelper.cs @@ -1,7 +1,6 @@ namespace UglyToad.PdfPig.Encryption { using System; - using System.Diagnostics; using System.IO; using System.Security.Cryptography; @@ -29,11 +28,6 @@ var buffer = new byte[256]; - if (data.Length > 256) - { - Debugger.Break(); - } - using (var decryptor = rijndael.CreateDecryptor(rijndael.Key, rijndael.IV)) using (var input = new MemoryStream(data)) using (var output = new MemoryStream())