[Mono-bugs] [Bug 46143][Nor] Changed - CryptoStream.Close throws Exception when not read to end
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Thu, 31 Jul 2003 16:52:47 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by spouliot@videotron.ca.
http://bugzilla.ximian.com/show_bug.cgi?id=46143
--- shadow/46143 Wed Jul 30 15:01:42 2003
+++ shadow/46143.tmp.1976 Thu Jul 31 16:52:47 2003
@@ -1,13 +1,13 @@
Bug#: 46143
Product: Mono/Class Libraries
Version: unspecified
OS: Debian Woody
OS Details:
-Status: ASSIGNED
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
Priority: Normal
Component: CORLIB
AssignedTo: mono-bugs@ximian.com
ReportedBy: JoergR@voelcker.com
QAContact: mono-bugs@ximian.com
@@ -64,6 +64,14 @@
size).
This probably means that the decryption is done by block size
(rounded up) but only returns the specified length (the rest is
probably cached). This is more complex than the current (quick)
design. CryptoStream needs to be re-written.
+
+------- Additional Comments From spouliot@videotron.ca 2003-07-31 16:52 -------
+New (minimal) unit tests have been commited (including the supplied
+test case) and the class has, a little, evolved.
+
+The Read method has been re-designed to return partial block
+results. However other problems, like #40689 (Write), still exists
+in the implementation.