Merge pull request #444 from knocte/xbuild_improvements
[mono.git] / mcs / class / System / System.Security.Cryptography.X509Certificates / X509_2_1_bootstrap.cs
1 namespace System.Security.Cryptography.X509Certificates {
2
3         public class X509Certificate2 : X509Certificate {
4                 public X509Certificate2 (byte[] rawData)
5                 {
6                 }
7         }
8
9         public class X509Chain {
10                 public bool Build (X509Certificate2 cert)
11                 {
12                         return false;
13                 }
14         }
15 }
16