Replies: 1 comment
-
I think what you are asking is about why the crypto transform is not performed on the data read from |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In InflaterInputBuffer, when specifies the CryptoTransform by call
zip.cryptoTransform = new MyCustomTransform();
, the raw data (rawData
) may has been transformed toclearText
.Why still use the
clearText
to read the data inInflaterInputBuffer.ReadLeByte()
instead userawData
.code at
SharpZipLib/src/ICSharpCode.SharpZipLib/Zip/Compression/Streams/InflaterInputStream.cs
Line 239 in cdd0931
Beta Was this translation helpful? Give feedback.
All reactions