We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ff738b commit 96e5c1fCopy full SHA for 96e5c1f
src/ICSharpCode.SharpZipLib/Encryption/ZipAESTransform.cs
@@ -155,8 +155,11 @@ public byte[] GetAuthCode()
155
/// </summary>
156
public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount)
157
{
158
-
159
- throw new NotImplementedException("ZipAESTransform.TransformFinalBlock");
+ if(inputCount > 0)
+ {
160
+ throw new NotImplementedException("TransformFinalBlock is not implemented and inputCount is greater than 0");
161
+ }
162
+ return new byte[0];
163
}
164
165
/// <summary>
0 commit comments