Beispiel #1
0
 public IX509Store GetAttributeCertificates(string type)
 {
     if (attrCertStore == null)
     {
         attrCertStore = Helper.CreateAttributeStore(type, signedData.Certificates);
     }
     return(attrCertStore);
 }
Beispiel #2
0
 public IX509Store GetAttributeCertificates(string type)
 {
     if (_attributeStore == null)
     {
         PopulateCertCrlSets();
         _attributeStore = Helper.CreateAttributeStore(type, _certSet);
     }
     return(_attributeStore);
 }