Пример #1
0
 public IX509Store GetCrls(string type)
 {
     if (crlStore == null)
     {
         crlStore = Helper.CreateCrlStore(type, signedData.CRLs);
     }
     return(crlStore);
 }
Пример #2
0
 public IX509Store GetCrls(string type)
 {
     if (_crlStore == null)
     {
         PopulateCertCrlSets();
         _crlStore = Helper.CreateCrlStore(type, _crlSet);
     }
     return(_crlStore);
 }