mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-12-21 19:29:51 +08:00
remove stray debugging code
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
namespace UglyToad.PdfPig.Encryption
|
namespace UglyToad.PdfPig.Encryption
|
||||||
{
|
{
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
|
|
||||||
@@ -29,11 +28,6 @@
|
|||||||
|
|
||||||
var buffer = new byte[256];
|
var buffer = new byte[256];
|
||||||
|
|
||||||
if (data.Length > 256)
|
|
||||||
{
|
|
||||||
Debugger.Break();
|
|
||||||
}
|
|
||||||
|
|
||||||
using (var decryptor = rijndael.CreateDecryptor(rijndael.Key, rijndael.IV))
|
using (var decryptor = rijndael.CreateDecryptor(rijndael.Key, rijndael.IV))
|
||||||
using (var input = new MemoryStream(data))
|
using (var input = new MemoryStream(data))
|
||||||
using (var output = new MemoryStream())
|
using (var output = new MemoryStream())
|
||||||
|
|||||||
Reference in New Issue
Block a user