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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=78986 --- shadow/78986 2006-08-01 02:36:27.000000000 -0400 +++ shadow/78986.tmp.4521 2006-08-01 02:36:27.000000000 -0400 @@ -0,0 +1,48 @@ +Bug#: 78986 +Product: Mono: Class Libraries +Version: 1.1 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: System +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: [PATCH] X509Certificate2 sometimes does not return RawData + +X509Certificate2, when created from username and password, does not return +RawData (both via RawData and GetCertRawData()). + +repro: + +1. run "makecert -p12 test.pfx mono" +2. compile and run below. + +using System; +using System.Security.Cryptography.X509Certificates; + +public class Test +{ + public static void Main () + { + X509Certificate2 cert = new X509Certificate2 ("test.pfx", +"mono"); + Console.WriteLine (cert.RawData); + } +} + +Actual Results: +no output (since RawData is null). + +Expected Results: +System.Byte[] (as it is not null). + +Additional Information: + +A fix being attached. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
