/// <summary>
 /// Constructs a new TslSniConnectionAdapater instance.
 /// </summary>
 /// <param name="authorityCommonName">
 /// The common name to use when generating the certificate authority. Basically, all SSL
 /// sites will show that they are secured by a certificate authority with this name that is
 /// supplied here.
 /// </param>
 public TlsSniConnectionAdapter(string authorityCommonName)
 {
     m_certStore = new SpoofedCertStore(authorityCommonName);
 }
 public TlsSniConnectionAdapter()
 {
     m_certStore = new SpoofedCertStore();
 }