Skip to content

Commit 77c5a97

Browse files
authored
fix(zip): remove leftover console logging (#809)
1 parent cdd0931 commit 77c5a97

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/ICSharpCode.SharpZipLib/Zip/ZipInputStream.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System;
66
using System.Diagnostics;
77
using System.IO;
8-
using System.Linq;
98

109
namespace ICSharpCode.SharpZipLib.Zip
1110
{
@@ -574,9 +573,7 @@ private int InitialRead(byte[] destination, int offset, int count)
574573

575574
// Generate and set crypto transform...
576575
var managed = new PkzipClassicManaged();
577-
Console.WriteLine($"Input Encoding: {_stringCodec.ZipCryptoEncoding.EncodingName}");
578576
byte[] key = PkzipClassic.GenerateKeys(_stringCodec.ZipCryptoEncoding.GetBytes(password));
579-
Console.WriteLine($"Input Bytes: {string.Join(", ", key.Select(b => $"{b:x2}").ToArray())}");
580577

581578
inputBuffer.CryptoTransform = managed.CreateDecryptor(key, null);
582579

0 commit comments

Comments
 (0)