public IX509Store GetCrls(string type) { if (crlStore == null) { crlStore = Helper.CreateCrlStore(type, signedData.CRLs); } return(crlStore); }
public IX509Store GetCrls(string type) { if (_crlStore == null) { PopulateCertCrlSets(); _crlStore = Helper.CreateCrlStore(type, _crlSet); } return(_crlStore); }
/** * return a Store containing CRLs, if any, contained * in this message. * * @param type type of store to create * @return a store of CRLs * @exception NoSuchStoreException if the store type isn't available. * @exception CmsException if a general exception prevents creation of the X509Store */ public IStore <X509Crl> GetCrls() { if (crlStore == null) { crlStore = Helper.CreateCrlStore(signedData.CRLs); } return(crlStore); }
/** * return a X509Store containing CRLs, if any, contained * in this message. * * @param type type of store to create * @return a store of CRLs * @exception NoSuchStoreException if the store type isn't available. * @exception CmsException if a general exception prevents creation of the X509Store */ public IStore <X509Crl> GetCrls() { if (_crlStore == null) { PopulateCertCrlSets(); _crlStore = Helper.CreateCrlStore(_crlSet); } return(_crlStore); }