[Mono-bugs] [Bug 701586] New: SymmetricAlgorithm.Dispose MissingMethodException
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Wed Jun 22 11:02:15 EDT 2011
https://bugzilla.novell.com/show_bug.cgi?id=701586
https://bugzilla.novell.com/show_bug.cgi?id=701586#c0
Summary: SymmetricAlgorithm.Dispose MissingMethodException
Classification: Mono
Product: Mono: Class Libraries
Version: 2.10.x
Platform: i386
OS/Version: Windows 7
Status: NEW
Severity: Normal
Priority: P5 - None
Component: CORLIB
AssignedTo: mono-bugs at lists.ximian.com
ReportedBy: j.schoot at divitec.nl
QAContact: mono-bugs at lists.ximian.com
Found By: ---
Blocker: ---
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1;
Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729;
Media Center PC 6.0; .NET4.0C; .NET4.0E)
SymmetricAlgorithm seems to have no implementation of a public void Dispose
method. This causes a MissingMethodException when the Dispose of the
SymmetricAlgorithm or any of its derived classes is called.
Reproducible: Always
Steps to Reproduce:
using System;
using System.Security.Cryptography;
namespace SymmetricalAlgorithm
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Start");
var rsa = new RijndaelManaged();
rsa.Dispose();
Console.WriteLine("Done");
}
}
}
Actual Results:
Missing method System.Security.Cryptography.SymmetricAlgorithm::Dispose()
Expected Results:
Start
Done
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list