123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using System.Collections;
- using System.Globalization;
- using System.IO;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Date;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.X509;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Pkix
- {
- public class Rfc3280CertPathUtilities
- {
- private static readonly PkixCrlUtilities CrlUtilities = new PkixCrlUtilities();
- internal static readonly string ANY_POLICY = "2.5.29.32.0";
- // key usage bits
- internal static readonly int KEY_CERT_SIGN = 5;
- internal static readonly int CRL_SIGN = 6;
- /**
- * If the complete CRL includes an issuing distribution point (IDP) CRL
- * extension check the following:
- * <p>
- * (i) If the distribution point name is present in the IDP CRL extension
- * and the distribution field is present in the DP, then verify that one of
- * the names in the IDP matches one of the names in the DP. If the
- * distribution point name is present in the IDP CRL extension and the
- * distribution field is omitted from the DP, then verify that one of the
- * names in the IDP matches one of the names in the cRLIssuer field of the
- * DP.
- * </p>
- * <p>
- * (ii) If the onlyContainsUserCerts boolean is asserted in the IDP CRL
- * extension, verify that the certificate does not include the basic
- * constraints extension with the cA boolean asserted.
- * </p>
- * <p>
- * (iii) If the onlyContainsCACerts boolean is asserted in the IDP CRL
- * extension, verify that the certificate includes the basic constraints
- * extension with the cA boolean asserted.
- * </p>
- * <p>
- * (iv) Verify that the onlyContainsAttributeCerts boolean is not asserted.
- * </p>
- *
- * @param dp The distribution point.
- * @param cert The certificate.
- * @param crl The CRL.
- * @throws AnnotatedException if one of the conditions is not met or an error occurs.
- */
- internal static void ProcessCrlB2(
- DistributionPoint dp,
- object cert,
- X509Crl crl)
- {
- IssuingDistributionPoint idp = null;
- try
- {
- idp = IssuingDistributionPoint.GetInstance(PkixCertPathValidatorUtilities.GetExtensionValue(crl, X509Extensions.IssuingDistributionPoint));
- }
- catch (Exception e)
- {
- throw new Exception("0 Issuing distribution point extension could not be decoded.", e);
- }
- // (b) (2) (i)
- // distribution point name is present
- if (idp != null)
- {
- if (idp.DistributionPoint != null)
- {
- // make list of names
- DistributionPointName dpName = IssuingDistributionPoint.GetInstance(idp).DistributionPoint;
- IList names = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList();
- if (dpName.PointType == DistributionPointName.FullName)
- {
- GeneralName[] genNames = GeneralNames.GetInstance(dpName.Name).GetNames();
- for (int j = 0; j < genNames.Length; j++)
- {
- names.Add(genNames[j]);
- }
- }
- if (dpName.PointType == DistributionPointName.NameRelativeToCrlIssuer)
- {
- Asn1EncodableVector vec = new Asn1EncodableVector();
- try
- {
- IEnumerator e = Asn1Sequence.GetInstance(
- Asn1Sequence.FromByteArray(crl.IssuerDN.GetEncoded())).GetEnumerator();
- while (e.MoveNext())
- {
- vec.Add((Asn1Encodable)e.Current);
- }
- }
- catch (IOException e)
- {
- throw new Exception("Could not read CRL issuer.", e);
- }
- vec.Add(dpName.Name);
- names.Add(new GeneralName(X509Name.GetInstance(new DerSequence(vec))));
- }
- bool matches = false;
- // verify that one of the names in the IDP matches one
- // of the names in the DP.
- if (dp.DistributionPointName != null)
- {
- dpName = dp.DistributionPointName;
- GeneralName[] genNames = null;
- if (dpName.PointType == DistributionPointName.FullName)
- {
- genNames = GeneralNames.GetInstance(dpName.Name).GetNames();
- }
- if (dpName.PointType == DistributionPointName.NameRelativeToCrlIssuer)
- {
- if (dp.CrlIssuer != null)
- {
- genNames = dp.CrlIssuer.GetNames();
- }
- else
- {
- genNames = new GeneralName[1];
- try
- {
- genNames[0] = new GeneralName(
- PkixCertPathValidatorUtilities.GetIssuerPrincipal(cert));
- }
- catch (IOException e)
- {
- throw new Exception("Could not read certificate issuer.", e);
- }
- }
- for (int j = 0; j < genNames.Length; j++)
- {
- IEnumerator e = Asn1Sequence.GetInstance(genNames[j].Name.ToAsn1Object()).GetEnumerator();
- Asn1EncodableVector vec = new Asn1EncodableVector();
- while (e.MoveNext())
- {
- vec.Add((Asn1Encodable)e.Current);
- }
- vec.Add(dpName.Name);
- genNames[j] = new GeneralName(X509Name.GetInstance(new DerSequence(vec)));
- }
- }
- if (genNames != null)
- {
- for (int j = 0; j < genNames.Length; j++)
- {
- if (names.Contains(genNames[j]))
- {
- matches = true;
- break;
- }
- }
- }
- if (!matches)
- {
- throw new Exception(
- "No match for certificate CRL issuing distribution point name to cRLIssuer CRL distribution point.");
- }
- }
- // verify that one of the names in
- // the IDP matches one of the names in the cRLIssuer field of
- // the DP
- else
- {
- if (dp.CrlIssuer == null)
- {
- throw new Exception("Either the cRLIssuer or the distributionPoint field must "
- + "be contained in DistributionPoint.");
- }
- GeneralName[] genNames = dp.CrlIssuer.GetNames();
- for (int j = 0; j < genNames.Length; j++)
- {
- if (names.Contains(genNames[j]))
- {
- matches = true;
- break;
- }
- }
- if (!matches)
- {
- throw new Exception(
- "No match for certificate CRL issuing distribution point name to cRLIssuer CRL distribution point.");
- }
- }
- }
- BasicConstraints bc = null;
- try
- {
- bc = BasicConstraints.GetInstance(PkixCertPathValidatorUtilities.GetExtensionValue(
- (IX509Extension)cert, X509Extensions.BasicConstraints));
- }
- catch (Exception e)
- {
- throw new Exception("Basic constraints extension could not be decoded.", e);
- }
- //if (cert is X509Certificate)
- {
- // (b) (2) (ii)
- if (idp.OnlyContainsUserCerts && ((bc != null) && bc.IsCA()))
- {
- throw new Exception("CA Cert CRL only contains user certificates.");
- }
- // (b) (2) (iii)
- if (idp.OnlyContainsCACerts && (bc == null || !bc.IsCA()))
- {
- throw new Exception("End CRL only contains CA certificates.");
- }
- }
- // (b) (2) (iv)
- if (idp.OnlyContainsAttributeCerts)
- {
- throw new Exception("onlyContainsAttributeCerts boolean is asserted.");
- }
- }
- }
- internal static void ProcessCertBC(
- PkixCertPath certPath,
- int index,
- PkixNameConstraintValidator nameConstraintValidator)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- int n = certs.Count;
- // i as defined in the algorithm description
- int i = n - index;
- //
- // (b), (c) permitted and excluded subtree checking.
- //
- if (!(PkixCertPathValidatorUtilities.IsSelfIssued(cert) && (i < n)))
- {
- X509Name principal = cert.SubjectDN;
- Asn1Sequence dns;
- try
- {
- dns = Asn1Sequence.GetInstance(principal.GetEncoded());
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Exception extracting subject name when checking subtrees.", e, certPath, index);
- }
- try
- {
- nameConstraintValidator.CheckPermittedDN(dns);
- nameConstraintValidator.CheckExcludedDN(dns);
- }
- catch (PkixNameConstraintValidatorException e)
- {
- throw new PkixCertPathValidatorException(
- "Subtree check for certificate subject failed.", e, certPath, index);
- }
- GeneralNames altName = null;
- try
- {
- altName = GeneralNames.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.SubjectAlternativeName));
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Subject alternative name extension could not be decoded.", e, certPath, index);
- }
- IList emails = X509Name.GetInstance(dns).GetValueList(X509Name.EmailAddress);
- foreach (string email in emails)
- {
- GeneralName emailAsGeneralName = new GeneralName(GeneralName.Rfc822Name, email);
- try
- {
- nameConstraintValidator.checkPermitted(emailAsGeneralName);
- nameConstraintValidator.checkExcluded(emailAsGeneralName);
- }
- catch (PkixNameConstraintValidatorException ex)
- {
- throw new PkixCertPathValidatorException(
- "Subtree check for certificate subject alternative email failed.", ex, certPath, index);
- }
- }
- if (altName != null)
- {
- GeneralName[] genNames = null;
- try
- {
- genNames = altName.GetNames();
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Subject alternative name contents could not be decoded.", e, certPath, index);
- }
- foreach (GeneralName genName in genNames)
- {
- try
- {
- nameConstraintValidator.checkPermitted(genName);
- nameConstraintValidator.checkExcluded(genName);
- }
- catch (PkixNameConstraintValidatorException e)
- {
- throw new PkixCertPathValidatorException(
- "Subtree check for certificate subject alternative name failed.", e, certPath, index);
- }
- }
- }
- }
- }
- internal static void PrepareNextCertA(
- PkixCertPath certPath,
- int index)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- //
- // (a) check the policy mappings
- //
- Asn1Sequence pm = null;
- try
- {
- pm = Asn1Sequence.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.PolicyMappings));
- }
- catch (Exception ex)
- {
- throw new PkixCertPathValidatorException(
- "Policy mappings extension could not be decoded.", ex, certPath, index);
- }
- if (pm != null)
- {
- Asn1Sequence mappings = pm;
- for (int j = 0; j < mappings.Count; j++)
- {
- DerObjectIdentifier issuerDomainPolicy = null;
- DerObjectIdentifier subjectDomainPolicy = null;
- try
- {
- Asn1Sequence mapping = Asn1Sequence.GetInstance(mappings[j]);
- issuerDomainPolicy = DerObjectIdentifier.GetInstance(mapping[0]);
- subjectDomainPolicy = DerObjectIdentifier.GetInstance(mapping[1]);
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Policy mappings extension contents could not be decoded.", e, certPath, index);
- }
- if (Rfc3280CertPathUtilities.ANY_POLICY.Equals(issuerDomainPolicy.Id))
- throw new PkixCertPathValidatorException(
- "IssuerDomainPolicy is anyPolicy", null, certPath, index);
- if (Rfc3280CertPathUtilities.ANY_POLICY.Equals(subjectDomainPolicy.Id))
- throw new PkixCertPathValidatorException(
- "SubjectDomainPolicy is anyPolicy,", null, certPath, index);
- }
- }
- }
- internal static PkixPolicyNode ProcessCertD(
- PkixCertPath certPath,
- int index,
- ISet acceptablePolicies,
- PkixPolicyNode validPolicyTree,
- IList[] policyNodes,
- int inhibitAnyPolicy)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- int n = certs.Count;
- // i as defined in the algorithm description
- int i = n - index;
- //
- // (d) policy Information checking against initial policy and
- // policy mapping
- //
- Asn1Sequence certPolicies = null;
- try
- {
- certPolicies = Asn1Sequence.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.CertificatePolicies));
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Could not read certificate policies extension from certificate.", e, certPath, index);
- }
- if (certPolicies != null && validPolicyTree != null)
- {
- //
- // (d) (1)
- //
- ISet pols = new HashSet();
- foreach (Asn1Encodable ae in certPolicies)
- {
- PolicyInformation pInfo = PolicyInformation.GetInstance(ae.ToAsn1Object());
- DerObjectIdentifier pOid = pInfo.PolicyIdentifier;
- pols.Add(pOid.Id);
- if (!Rfc3280CertPathUtilities.ANY_POLICY.Equals(pOid.Id))
- {
- ISet pq = null;
- try
- {
- pq = PkixCertPathValidatorUtilities.GetQualifierSet(pInfo.PolicyQualifiers);
- }
- catch (PkixCertPathValidatorException ex)
- {
- throw new PkixCertPathValidatorException(
- "Policy qualifier info set could not be build.", ex, certPath, index);
- }
- bool match = PkixCertPathValidatorUtilities.ProcessCertD1i(i, policyNodes, pOid, pq);
- if (!match)
- {
- PkixCertPathValidatorUtilities.ProcessCertD1ii(i, policyNodes, pOid, pq);
- }
- }
- }
- if (acceptablePolicies.IsEmpty || acceptablePolicies.Contains(Rfc3280CertPathUtilities.ANY_POLICY))
- {
- acceptablePolicies.Clear();
- acceptablePolicies.AddAll(pols);
- }
- else
- {
- ISet t1 = new HashSet();
- foreach (object o in acceptablePolicies)
- {
- if (pols.Contains(o))
- {
- t1.Add(o);
- }
- }
- acceptablePolicies.Clear();
- acceptablePolicies.AddAll(t1);
- }
- //
- // (d) (2)
- //
- if ((inhibitAnyPolicy > 0) || ((i < n) && PkixCertPathValidatorUtilities.IsSelfIssued(cert)))
- {
- foreach (Asn1Encodable ae in certPolicies)
- {
- PolicyInformation pInfo = PolicyInformation.GetInstance(ae.ToAsn1Object());
- if (Rfc3280CertPathUtilities.ANY_POLICY.Equals(pInfo.PolicyIdentifier.Id))
- {
- ISet _apq = PkixCertPathValidatorUtilities.GetQualifierSet(pInfo.PolicyQualifiers);
- IList _nodes = policyNodes[i - 1];
- for (int k = 0; k < _nodes.Count; k++)
- {
- PkixPolicyNode _node = (PkixPolicyNode)_nodes[k];
- IEnumerator _policySetIter = _node.ExpectedPolicies.GetEnumerator();
- while (_policySetIter.MoveNext())
- {
- object _tmp = _policySetIter.Current;
- string _policy;
- if (_tmp is string)
- {
- _policy = (string)_tmp;
- }
- else if (_tmp is DerObjectIdentifier)
- {
- _policy = ((DerObjectIdentifier)_tmp).Id;
- }
- else
- {
- continue;
- }
- bool _found = false;
- foreach (PkixPolicyNode _child in _node.Children)
- {
- if (_policy.Equals(_child.ValidPolicy))
- {
- _found = true;
- }
- }
- if (!_found)
- {
- ISet _newChildExpectedPolicies = new HashSet();
- _newChildExpectedPolicies.Add(_policy);
- PkixPolicyNode _newChild = new PkixPolicyNode(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList(), i,
- _newChildExpectedPolicies, _node, _apq, _policy, false);
- _node.AddChild(_newChild);
- policyNodes[i].Add(_newChild);
- }
- }
- }
- break;
- }
- }
- }
- PkixPolicyNode _validPolicyTree = validPolicyTree;
- //
- // (d) (3)
- //
- for (int j = (i - 1); j >= 0; j--)
- {
- IList nodes = policyNodes[j];
- for (int k = 0; k < nodes.Count; k++)
- {
- PkixPolicyNode node = (PkixPolicyNode)nodes[k];
- if (!node.HasChildren)
- {
- _validPolicyTree = PkixCertPathValidatorUtilities.RemovePolicyNode(_validPolicyTree, policyNodes,
- node);
- if (_validPolicyTree == null)
- {
- break;
- }
- }
- }
- }
- //
- // d (4)
- //
- ISet criticalExtensionOids = cert.GetCriticalExtensionOids();
- if (criticalExtensionOids != null)
- {
- bool critical = criticalExtensionOids.Contains(X509Extensions.CertificatePolicies.Id);
- IList nodes = policyNodes[i];
- for (int j = 0; j < nodes.Count; j++)
- {
- PkixPolicyNode node = (PkixPolicyNode)nodes[j];
- node.IsCritical = critical;
- }
- }
- return _validPolicyTree;
- }
- return null;
- }
- /**
- * If the DP includes cRLIssuer, then verify that the issuer field in the
- * complete CRL matches cRLIssuer in the DP and that the complete CRL
- * contains an
- * g distribution point extension with the indirectCRL
- * boolean asserted. Otherwise, verify that the CRL issuer matches the
- * certificate issuer.
- *
- * @param dp The distribution point.
- * @param cert The certificate ot attribute certificate.
- * @param crl The CRL for <code>cert</code>.
- * @throws AnnotatedException if one of the above conditions does not apply or an error
- * occurs.
- */
- internal static void ProcessCrlB1(
- DistributionPoint dp,
- object cert,
- X509Crl crl)
- {
- Asn1Object idp = PkixCertPathValidatorUtilities.GetExtensionValue(
- crl, X509Extensions.IssuingDistributionPoint);
- bool isIndirect = false;
- if (idp != null)
- {
- if (IssuingDistributionPoint.GetInstance(idp).IsIndirectCrl)
- {
- isIndirect = true;
- }
- }
- byte[] issuerBytes = crl.IssuerDN.GetEncoded();
- bool matchIssuer = false;
- if (dp.CrlIssuer != null)
- {
- GeneralName[] genNames = dp.CrlIssuer.GetNames();
- for (int j = 0; j < genNames.Length; j++)
- {
- if (genNames[j].TagNo == GeneralName.DirectoryName)
- {
- try
- {
- if (BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Arrays.AreEqual(genNames[j].Name.ToAsn1Object().GetEncoded(), issuerBytes))
- {
- matchIssuer = true;
- }
- }
- catch (IOException e)
- {
- throw new Exception(
- "CRL issuer information from distribution point cannot be decoded.", e);
- }
- }
- }
- if (matchIssuer && !isIndirect)
- {
- throw new Exception("Distribution point contains cRLIssuer field but CRL is not indirect.");
- }
- if (!matchIssuer)
- {
- throw new Exception("CRL issuer of CRL does not match CRL issuer of distribution point.");
- }
- }
- else
- {
- if (crl.IssuerDN.Equivalent(PkixCertPathValidatorUtilities.GetIssuerPrincipal(cert), true))
- {
- matchIssuer = true;
- }
- }
- if (!matchIssuer)
- {
- throw new Exception("Cannot find matching CRL issuer for certificate.");
- }
- }
- internal static ReasonsMask ProcessCrlD(
- X509Crl crl,
- DistributionPoint dp)
- //throws AnnotatedException
- {
- IssuingDistributionPoint idp = null;
- try
- {
- idp = IssuingDistributionPoint.GetInstance(PkixCertPathValidatorUtilities.GetExtensionValue(crl, X509Extensions.IssuingDistributionPoint));
- }
- catch (Exception e)
- {
- throw new Exception("issuing distribution point extension could not be decoded.", e);
- }
- // (d) (1)
- if (idp != null && idp.OnlySomeReasons != null && dp.Reasons != null)
- {
- return new ReasonsMask(dp.Reasons.IntValue).Intersect(new ReasonsMask(idp.OnlySomeReasons
- .IntValue));
- }
- // (d) (4)
- if ((idp == null || idp.OnlySomeReasons == null) && dp.Reasons == null)
- {
- return ReasonsMask.AllReasons;
- }
- // (d) (2) and (d)(3)
- ReasonsMask dpReasons = null;
- if (dp.Reasons == null)
- {
- dpReasons = ReasonsMask.AllReasons;
- }
- else
- {
- dpReasons = new ReasonsMask(dp.Reasons.IntValue);
- }
- ReasonsMask idpReasons = null;
- if (idp == null)
- {
- idpReasons = ReasonsMask.AllReasons;
- }
- else
- {
- idpReasons = new ReasonsMask(idp.OnlySomeReasons.IntValue);
- }
- return dpReasons.Intersect(idpReasons);
- }
- /**
- * Obtain and validate the certification path for the complete CRL issuer.
- * If a key usage extension is present in the CRL issuer's certificate,
- * verify that the cRLSign bit is set.
- *
- * @param crl CRL which contains revocation information for the certificate
- * <code>cert</code>.
- * @param cert The attribute certificate or certificate to check if it is
- * revoked.
- * @param defaultCRLSignCert The issuer certificate of the certificate <code>cert</code>.
- * @param defaultCRLSignKey The public key of the issuer certificate
- * <code>defaultCRLSignCert</code>.
- * @param paramsPKIX paramsPKIX PKIX parameters.
- * @param certPathCerts The certificates on the certification path.
- * @return A <code>Set</code> with all keys of possible CRL issuer
- * certificates.
- * @throws AnnotatedException if the CRL is not valid or the status cannot be checked or
- * some error occurs.
- */
- internal static ISet ProcessCrlF(
- X509Crl crl,
- object cert,
- X509Certificate defaultCRLSignCert,
- AsymmetricKeyParameter defaultCRLSignKey,
- PkixParameters paramsPKIX,
- IList certPathCerts)
- {
- // (f)
- // get issuer from CRL
- X509CertStoreSelector selector = new X509CertStoreSelector();
- try
- {
- selector.Subject = crl.IssuerDN;
- }
- catch (IOException e)
- {
- throw new Exception(
- "Subject criteria for certificate selector to find issuer certificate for CRL could not be set.", e);
- }
- // get CRL signing certs
- IList coll = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList();
- try
- {
- CollectionUtilities.AddRange(coll, PkixCertPathValidatorUtilities.FindCertificates(selector, paramsPKIX.GetStores()));
- CollectionUtilities.AddRange(coll, PkixCertPathValidatorUtilities.FindCertificates(selector, paramsPKIX.GetAdditionalStores()));
- }
- catch (Exception e)
- {
- throw new Exception("Issuer certificate for CRL cannot be searched.", e);
- }
- coll.Add(defaultCRLSignCert);
- IEnumerator cert_it = coll.GetEnumerator();
- IList validCerts = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList();
- IList validKeys = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList();
- while (cert_it.MoveNext())
- {
- X509Certificate signingCert = (X509Certificate)cert_it.Current;
- /*
- * CA of the certificate, for which this CRL is checked, has also
- * signed CRL, so skip the path validation, because is already done
- */
- if (signingCert.Equals(defaultCRLSignCert))
- {
- validCerts.Add(signingCert);
- validKeys.Add(defaultCRLSignKey);
- continue;
- }
- try
- {
- // CertPathBuilder builder = CertPathBuilder.GetInstance("PKIX");
- PkixCertPathBuilder builder = new PkixCertPathBuilder();
- selector = new X509CertStoreSelector();
- selector.Certificate = signingCert;
- PkixParameters temp = (PkixParameters)paramsPKIX.Clone();
- temp.SetTargetCertConstraints(selector);
- PkixBuilderParameters parameters = (PkixBuilderParameters)
- PkixBuilderParameters.GetInstance(temp);
- /*
- * if signingCert is placed not higher on the cert path a
- * dependency loop results. CRL for cert is checked, but
- * signingCert is needed for checking the CRL which is dependent
- * on checking cert because it is higher in the cert path and so
- * signing signingCert transitively. so, revocation is disabled,
- * forgery attacks of the CRL are detected in this outer loop
- * for all other it must be enabled to prevent forgery attacks
- */
- if (certPathCerts.Contains(signingCert))
- {
- parameters.IsRevocationEnabled = false;
- }
- else
- {
- parameters.IsRevocationEnabled = true;
- }
- IList certs = builder.Build(parameters).CertPath.Certificates;
- validCerts.Add(signingCert);
- validKeys.Add(PkixCertPathValidatorUtilities.GetNextWorkingKey(certs, 0));
- }
- catch (PkixCertPathBuilderException e)
- {
- throw new Exception("CertPath for CRL signer failed to validate.", e);
- }
- catch (PkixCertPathValidatorException e)
- {
- throw new Exception("Public key of issuer certificate of CRL could not be retrieved.", e);
- }
- //catch (Exception e)
- //{
- // throw new Exception(e.Message);
- //}
- }
- ISet checkKeys = new HashSet();
- Exception lastException = null;
- for (int i = 0; i < validCerts.Count; i++)
- {
- X509Certificate signCert = (X509Certificate)validCerts[i];
- bool[] keyusage = signCert.GetKeyUsage();
- if (keyusage != null && (keyusage.Length < 7 || !keyusage[CRL_SIGN]))
- {
- lastException = new Exception(
- "Issuer certificate key usage extension does not permit CRL signing.");
- }
- else
- {
- checkKeys.Add(validKeys[i]);
- }
- }
- if ((checkKeys.Count == 0) && lastException == null)
- {
- throw new Exception("Cannot find a valid issuer certificate.");
- }
- if ((checkKeys.Count == 0) && lastException != null)
- {
- throw lastException;
- }
- return checkKeys;
- }
- internal static AsymmetricKeyParameter ProcessCrlG(
- X509Crl crl,
- ISet keys)
- {
- Exception lastException = null;
- foreach (AsymmetricKeyParameter key in keys)
- {
- try
- {
- crl.Verify(key);
- return key;
- }
- catch (Exception e)
- {
- lastException = e;
- }
- }
- throw new Exception("Cannot verify CRL.", lastException);
- }
- internal static X509Crl ProcessCrlH(
- ISet deltaCrls,
- AsymmetricKeyParameter key)
- {
- Exception lastException = null;
- foreach (X509Crl crl in deltaCrls)
- {
- try
- {
- crl.Verify(key);
- return crl;
- }
- catch (Exception e)
- {
- lastException = e;
- }
- }
- if (lastException != null)
- {
- throw new Exception("Cannot verify delta CRL.", lastException);
- }
- return null;
- }
- /**
- * Checks a distribution point for revocation information for the
- * certificate <code>cert</code>.
- *
- * @param dp The distribution point to consider.
- * @param paramsPKIX PKIX parameters.
- * @param cert Certificate to check if it is revoked.
- * @param validDate The date when the certificate revocation status should be
- * checked.
- * @param defaultCRLSignCert The issuer certificate of the certificate <code>cert</code>.
- * @param defaultCRLSignKey The public key of the issuer certificate
- * <code>defaultCRLSignCert</code>.
- * @param certStatus The current certificate revocation status.
- * @param reasonMask The reasons mask which is already checked.
- * @param certPathCerts The certificates of the certification path.
- * @throws AnnotatedException if the certificate is revoked or the status cannot be checked
- * or some error occurs.
- */
- private static void CheckCrl(
- DistributionPoint dp,
- PkixParameters paramsPKIX,
- X509Certificate cert,
- DateTime validDate,
- X509Certificate defaultCRLSignCert,
- AsymmetricKeyParameter defaultCRLSignKey,
- CertStatus certStatus,
- ReasonsMask reasonMask,
- IList certPathCerts)
- //throws AnnotatedException
- {
- DateTime currentDate = DateTime.UtcNow;
- if (validDate.Ticks > currentDate.Ticks)
- {
- throw new Exception("Validation time is in future.");
- }
- // (a)
- /*
- * We always get timely valid CRLs, so there is no step (a) (1).
- * "locally cached" CRLs are assumed to be in getStore(), additional
- * CRLs must be enabled in the ExtendedPKIXParameters and are in
- * getAdditionalStore()
- */
- ISet crls = PkixCertPathValidatorUtilities.GetCompleteCrls(dp, cert, currentDate, paramsPKIX);
- bool validCrlFound = false;
- Exception lastException = null;
- IEnumerator crl_iter = crls.GetEnumerator();
- while (crl_iter.MoveNext() && certStatus.Status == CertStatus.Unrevoked && !reasonMask.IsAllReasons)
- {
- try
- {
- X509Crl crl = (X509Crl)crl_iter.Current;
- // (d)
- ReasonsMask interimReasonsMask = Rfc3280CertPathUtilities.ProcessCrlD(crl, dp);
- // (e)
- /*
- * The reasons mask is updated at the end, so only valid CRLs
- * can update it. If this CRL does not contain new reasons it
- * must be ignored.
- */
- if (!interimReasonsMask.HasNewReasons(reasonMask))
- {
- continue;
- }
- // (f)
- ISet keys = Rfc3280CertPathUtilities.ProcessCrlF(crl, cert, defaultCRLSignCert, defaultCRLSignKey,
- paramsPKIX, certPathCerts);
- // (g)
- AsymmetricKeyParameter key = Rfc3280CertPathUtilities.ProcessCrlG(crl, keys);
- X509Crl deltaCRL = null;
- if (paramsPKIX.IsUseDeltasEnabled)
- {
- // get delta CRLs
- ISet deltaCRLs = PkixCertPathValidatorUtilities.GetDeltaCrls(currentDate, paramsPKIX, crl);
- // we only want one valid delta CRL
- // (h)
- deltaCRL = Rfc3280CertPathUtilities.ProcessCrlH(deltaCRLs, key);
- }
- /*
- * CRL must be be valid at the current time, not the validation
- * time. If a certificate is revoked with reason keyCompromise,
- * cACompromise, it can be used for forgery, also for the past.
- * This reason may not be contained in older CRLs.
- */
- /*
- * in the chain model signatures stay valid also after the
- * certificate has been expired, so they do not have to be in
- * the CRL validity time
- */
- if (paramsPKIX.ValidityModel != PkixParameters.ChainValidityModel)
- {
- /*
- * if a certificate has expired, but was revoked, it is not
- * more in the CRL, so it would be regarded as valid if the
- * first check is not done
- */
- if (cert.NotAfter.Ticks < crl.ThisUpdate.Ticks)
- {
- throw new Exception("No valid CRL for current time found.");
- }
- }
- Rfc3280CertPathUtilities.ProcessCrlB1(dp, cert, crl);
- // (b) (2)
- Rfc3280CertPathUtilities.ProcessCrlB2(dp, cert, crl);
- // (c)
- Rfc3280CertPathUtilities.ProcessCrlC(deltaCRL, crl, paramsPKIX);
- // (i)
- Rfc3280CertPathUtilities.ProcessCrlI(validDate, deltaCRL, cert, certStatus, paramsPKIX);
- // (j)
- Rfc3280CertPathUtilities.ProcessCrlJ(validDate, crl, cert, certStatus);
- // (k)
- if (certStatus.Status == CrlReason.RemoveFromCrl)
- {
- certStatus.Status = CertStatus.Unrevoked;
- }
- // update reasons mask
- reasonMask.AddReasons(interimReasonsMask);
- ISet criticalExtensions = crl.GetCriticalExtensionOids();
- if (criticalExtensions != null)
- {
- criticalExtensions = new HashSet(criticalExtensions);
- criticalExtensions.Remove(X509Extensions.IssuingDistributionPoint.Id);
- criticalExtensions.Remove(X509Extensions.DeltaCrlIndicator.Id);
- if (!criticalExtensions.IsEmpty)
- throw new Exception("CRL contains unsupported critical extensions.");
- }
- if (deltaCRL != null)
- {
- criticalExtensions = deltaCRL.GetCriticalExtensionOids();
- if (criticalExtensions != null)
- {
- criticalExtensions = new HashSet(criticalExtensions);
- criticalExtensions.Remove(X509Extensions.IssuingDistributionPoint.Id);
- criticalExtensions.Remove(X509Extensions.DeltaCrlIndicator.Id);
- if (!criticalExtensions.IsEmpty)
- throw new Exception("Delta CRL contains unsupported critical extension.");
- }
- }
- validCrlFound = true;
- }
- catch (Exception e)
- {
- lastException = e;
- }
- }
- if (!validCrlFound)
- {
- throw lastException;
- }
- }
- /**
- * Checks a certificate if it is revoked.
- *
- * @param paramsPKIX PKIX parameters.
- * @param cert Certificate to check if it is revoked.
- * @param validDate The date when the certificate revocation status should be
- * checked.
- * @param sign The issuer certificate of the certificate <code>cert</code>.
- * @param workingPublicKey The public key of the issuer certificate <code>sign</code>.
- * @param certPathCerts The certificates of the certification path.
- * @throws AnnotatedException if the certificate is revoked or the status cannot be checked
- * or some error occurs.
- */
- protected static void CheckCrls(
- PkixParameters paramsPKIX,
- X509Certificate cert,
- DateTime validDate,
- X509Certificate sign,
- AsymmetricKeyParameter workingPublicKey,
- IList certPathCerts)
- {
- Exception lastException = null;
- CrlDistPoint crldp = null;
- try
- {
- crldp = CrlDistPoint.GetInstance(PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.CrlDistributionPoints));
- }
- catch (Exception e)
- {
- throw new Exception("CRL distribution point extension could not be read.", e);
- }
- try
- {
- PkixCertPathValidatorUtilities.AddAdditionalStoresFromCrlDistributionPoint(crldp, paramsPKIX);
- }
- catch (Exception e)
- {
- throw new Exception(
- "No additional CRL locations could be decoded from CRL distribution point extension.", e);
- }
- CertStatus certStatus = new CertStatus();
- ReasonsMask reasonsMask = new ReasonsMask();
- bool validCrlFound = false;
- // for each distribution point
- if (crldp != null)
- {
- DistributionPoint[] dps = null;
- try
- {
- dps = crldp.GetDistributionPoints();
- }
- catch (Exception e)
- {
- throw new Exception("Distribution points could not be read.", e);
- }
- if (dps != null)
- {
- for (int i = 0; i < dps.Length && certStatus.Status == CertStatus.Unrevoked && !reasonsMask.IsAllReasons; i++)
- {
- PkixParameters paramsPKIXClone = (PkixParameters)paramsPKIX.Clone();
- try
- {
- CheckCrl(dps[i], paramsPKIXClone, cert, validDate, sign, workingPublicKey, certStatus, reasonsMask, certPathCerts);
- validCrlFound = true;
- }
- catch (Exception e)
- {
- lastException = e;
- }
- }
- }
- }
- /*
- * If the revocation status has not been determined, repeat the process
- * above with any available CRLs not specified in a distribution point
- * but issued by the certificate issuer.
- */
- if (certStatus.Status == CertStatus.Unrevoked && !reasonsMask.IsAllReasons)
- {
- try
- {
- /*
- * assume a DP with both the reasons and the cRLIssuer fields
- * omitted and a distribution point name of the certificate
- * issuer.
- */
- X509Name issuer;
- try
- {
- issuer = X509Name.GetInstance(cert.IssuerDN.GetEncoded());
- }
- catch (Exception e)
- {
- throw new Exception("Issuer from certificate for CRL could not be reencoded.", e);
- }
- DistributionPoint dp = new DistributionPoint(new DistributionPointName(0, new GeneralNames(
- new GeneralName(GeneralName.DirectoryName, issuer))), null, null);
- PkixParameters paramsPKIXClone = (PkixParameters)paramsPKIX.Clone();
- CheckCrl(dp, paramsPKIXClone, cert, validDate, sign, workingPublicKey, certStatus, reasonsMask,
- certPathCerts);
- validCrlFound = true;
- }
- catch (Exception e)
- {
- lastException = e;
- }
- }
- if (!validCrlFound)
- {
- throw lastException;
- }
- if (certStatus.Status != CertStatus.Unrevoked)
- {
- // This format is enforced by the NistCertPath tests
- string formattedDate = certStatus.RevocationDate.Value.ToString(
- "ddd MMM dd HH:mm:ss K yyyy");
- string message = "Certificate revocation after " + formattedDate;
- message += ", reason: " + CrlReasons[certStatus.Status];
- throw new Exception(message);
- }
- if (!reasonsMask.IsAllReasons && certStatus.Status == CertStatus.Unrevoked)
- {
- certStatus.Status = CertStatus.Undetermined;
- }
- if (certStatus.Status == CertStatus.Undetermined)
- {
- throw new Exception("Certificate status could not be determined.");
- }
- }
- internal static PkixPolicyNode PrepareCertB(
- PkixCertPath certPath,
- int index,
- IList[] policyNodes,
- PkixPolicyNode validPolicyTree,
- int policyMapping)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- int n = certs.Count;
- // i as defined in the algorithm description
- int i = n - index;
- // (b)
- //
- Asn1Sequence pm = null;
- try
- {
- pm = (Asn1Sequence)Asn1Sequence.GetInstance(PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.PolicyMappings));
- }
- catch (Exception ex)
- {
- throw new PkixCertPathValidatorException(
- "Policy mappings extension could not be decoded.", ex, certPath, index);
- }
- PkixPolicyNode _validPolicyTree = validPolicyTree;
- if (pm != null)
- {
- Asn1Sequence mappings = (Asn1Sequence)pm;
- IDictionary m_idp = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateHashtable();
- ISet s_idp = new HashSet();
- for (int j = 0; j < mappings.Count; j++)
- {
- Asn1Sequence mapping = (Asn1Sequence) mappings[j];
- string id_p = ((DerObjectIdentifier) mapping[0]).Id;
- string sd_p = ((DerObjectIdentifier) mapping[1]).Id;
- ISet tmp;
- if (!m_idp.Contains(id_p))
- {
- tmp = new HashSet();
- tmp.Add(sd_p);
- m_idp[id_p] = tmp;
- s_idp.Add(id_p);
- }
- else
- {
- tmp = (ISet)m_idp[id_p];
- tmp.Add(sd_p);
- }
- }
- IEnumerator it_idp = s_idp.GetEnumerator();
- while (it_idp.MoveNext())
- {
- string id_p = (string)it_idp.Current;
- //
- // (1)
- //
- if (policyMapping > 0)
- {
- bool idp_found = false;
- IEnumerator nodes_i = policyNodes[i].GetEnumerator();
- while (nodes_i.MoveNext())
- {
- PkixPolicyNode node = (PkixPolicyNode)nodes_i.Current;
- if (node.ValidPolicy.Equals(id_p))
- {
- idp_found = true;
- node.ExpectedPolicies = (ISet)m_idp[id_p];
- break;
- }
- }
- if (!idp_found)
- {
- nodes_i = policyNodes[i].GetEnumerator();
- while (nodes_i.MoveNext())
- {
- PkixPolicyNode node = (PkixPolicyNode)nodes_i.Current;
- if (Rfc3280CertPathUtilities.ANY_POLICY.Equals(node.ValidPolicy))
- {
- ISet pq = null;
- Asn1Sequence policies = null;
- try
- {
- policies = (Asn1Sequence)PkixCertPathValidatorUtilities.GetExtensionValue(cert,
- X509Extensions.CertificatePolicies);
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Certificate policies extension could not be decoded.", e, certPath, index);
- }
- foreach (Asn1Encodable ae in policies)
- {
- PolicyInformation pinfo = null;
- try
- {
- pinfo = PolicyInformation.GetInstance(ae.ToAsn1Object());
- }
- catch (Exception ex)
- {
- throw new PkixCertPathValidatorException(
- "Policy information could not be decoded.", ex, certPath, index);
- }
- if (Rfc3280CertPathUtilities.ANY_POLICY.Equals(pinfo.PolicyIdentifier.Id))
- {
- try
- {
- pq = PkixCertPathValidatorUtilities
- .GetQualifierSet(pinfo.PolicyQualifiers);
- }
- catch (PkixCertPathValidatorException ex)
- {
- throw new PkixCertPathValidatorException(
- "Policy qualifier info set could not be decoded.", ex, certPath,
- index);
- }
- break;
- }
- }
- bool ci = false;
- ISet critExtOids = cert.GetCriticalExtensionOids();
- if (critExtOids != null)
- {
- ci = critExtOids.Contains(X509Extensions.CertificatePolicies.Id);
- }
- PkixPolicyNode p_node = (PkixPolicyNode)node.Parent;
- if (Rfc3280CertPathUtilities.ANY_POLICY.Equals(p_node.ValidPolicy))
- {
- PkixPolicyNode c_node = new PkixPolicyNode(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList(), i,
- (ISet)m_idp[id_p], p_node, pq, id_p, ci);
- p_node.AddChild(c_node);
- policyNodes[i].Add(c_node);
- }
- break;
- }
- }
- }
- //
- // (2)
- //
- }
- else if (policyMapping <= 0)
- {
- foreach (PkixPolicyNode node in BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList(policyNodes[i]))
- {
- if (node.ValidPolicy.Equals(id_p))
- {
- node.Parent.RemoveChild(node);
- for (int k = i - 1; k >= 0; k--)
- {
- foreach (PkixPolicyNode node2 in BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList(policyNodes[k]))
- {
- if (!node2.HasChildren)
- {
- _validPolicyTree = PkixCertPathValidatorUtilities.RemovePolicyNode(
- _validPolicyTree, policyNodes, node2);
- if (_validPolicyTree == null)
- break;
- }
- }
- }
- }
- }
- }
- }
- }
- return _validPolicyTree;
- }
- internal static ISet[] ProcessCrlA1ii(
- DateTime currentDate,
- PkixParameters paramsPKIX,
- X509Certificate cert,
- X509Crl crl)
- {
- ISet deltaSet = new HashSet();
- X509CrlStoreSelector crlselect = new X509CrlStoreSelector();
- crlselect.CertificateChecking = cert;
- try
- {
- IList issuer = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList();
- issuer.Add(crl.IssuerDN);
- crlselect.Issuers = issuer;
- }
- catch (IOException e)
- {
- throw new Exception("Cannot extract issuer from CRL." + e, e);
- }
- crlselect.CompleteCrlEnabled = true;
- ISet completeSet = CrlUtilities.FindCrls(crlselect, paramsPKIX, currentDate);
- if (paramsPKIX.IsUseDeltasEnabled)
- {
- // get delta CRL(s)
- try
- {
- deltaSet.AddAll(PkixCertPathValidatorUtilities.GetDeltaCrls(currentDate, paramsPKIX, crl));
- }
- catch (Exception e)
- {
- throw new Exception("Exception obtaining delta CRLs.", e);
- }
- }
- return new ISet[]{ completeSet, deltaSet };
- }
- internal static ISet ProcessCrlA1i(
- DateTime currentDate,
- PkixParameters paramsPKIX,
- X509Certificate cert,
- X509Crl crl)
- {
- ISet deltaSet = new HashSet();
- if (paramsPKIX.IsUseDeltasEnabled)
- {
- CrlDistPoint freshestCRL = null;
- try
- {
- freshestCRL = CrlDistPoint.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.FreshestCrl));
- }
- catch (Exception e)
- {
- throw new Exception("Freshest CRL extension could not be decoded from certificate.", e);
- }
- if (freshestCRL == null)
- {
- try
- {
- freshestCRL = CrlDistPoint.GetInstance(PkixCertPathValidatorUtilities.GetExtensionValue(crl, X509Extensions.FreshestCrl));
- }
- catch (Exception e)
- {
- throw new Exception("Freshest CRL extension could not be decoded from CRL.", e);
- }
- }
- if (freshestCRL != null)
- {
- try
- {
- PkixCertPathValidatorUtilities.AddAdditionalStoresFromCrlDistributionPoint(freshestCRL, paramsPKIX);
- }
- catch (Exception e)
- {
- throw new Exception(
- "No new delta CRL locations could be added from Freshest CRL extension.", e);
- }
- // get delta CRL(s)
- try
- {
- deltaSet.AddAll(PkixCertPathValidatorUtilities.GetDeltaCrls(currentDate, paramsPKIX, crl));
- }
- catch (Exception e)
- {
- throw new Exception("Exception obtaining delta CRLs.", e);
- }
- }
- }
- return deltaSet;
- }
- internal static void ProcessCertF(
- PkixCertPath certPath,
- int index,
- PkixPolicyNode validPolicyTree,
- int explicitPolicy)
- {
- //
- // (f)
- //
- if (explicitPolicy <= 0 && validPolicyTree == null)
- {
- throw new PkixCertPathValidatorException(
- "No valid policy tree found when one expected.", null, certPath, index);
- }
- }
- internal static void ProcessCertA(
- PkixCertPath certPath,
- PkixParameters paramsPKIX,
- int index,
- AsymmetricKeyParameter workingPublicKey,
- X509Name workingIssuerName,
- X509Certificate sign)
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (a) verify
- //
- try
- {
- // (a) (1)
- //
- cert.Verify(workingPublicKey);
- }
- catch (GeneralSecurityException e)
- {
- throw new PkixCertPathValidatorException("Could not validate certificate signature.", e, certPath, index);
- }
- try
- {
- // (a) (2)
- //
- cert.CheckValidity(PkixCertPathValidatorUtilities
- .GetValidCertDateFromValidityModel(paramsPKIX, certPath, index));
- }
- catch (CertificateExpiredException e)
- {
- throw new PkixCertPathValidatorException("Could not validate certificate: " + e.Message, e, certPath, index);
- }
- catch (CertificateNotYetValidException e)
- {
- throw new PkixCertPathValidatorException("Could not validate certificate: " + e.Message, e, certPath, index);
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException("Could not validate time of certificate.", e, certPath, index);
- }
- //
- // (a) (3)
- //
- if (paramsPKIX.IsRevocationEnabled)
- {
- try
- {
- CheckCrls(paramsPKIX, cert, PkixCertPathValidatorUtilities.GetValidCertDateFromValidityModel(paramsPKIX,
- certPath, index), sign, workingPublicKey, certs);
- }
- catch (Exception e)
- {
- Exception cause = e.InnerException;
- if (cause == null)
- {
- cause = e;
- }
- throw new PkixCertPathValidatorException(e.Message, cause, certPath, index);
- }
- }
- //
- // (a) (4) name chaining
- //
- X509Name issuer = PkixCertPathValidatorUtilities.GetIssuerPrincipal(cert);
- if (!issuer.Equivalent(workingIssuerName, true))
- {
- throw new PkixCertPathValidatorException("IssuerName(" + issuer
- + ") does not match SubjectName(" + workingIssuerName + ") of signing certificate.", null,
- certPath, index);
- }
- }
- internal static int PrepareNextCertI1(
- PkixCertPath certPath,
- int index,
- int explicitPolicy)
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (i)
- //
- Asn1Sequence pc = null;
- try
- {
- pc = Asn1Sequence.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.PolicyConstraints));
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Policy constraints extension cannot be decoded.", e, certPath, index);
- }
- int tmpInt;
- if (pc != null)
- {
- IEnumerator policyConstraints = pc.GetEnumerator();
- while (policyConstraints.MoveNext())
- {
- try
- {
- Asn1TaggedObject constraint = Asn1TaggedObject.GetInstance(policyConstraints.Current);
- if (constraint.TagNo == 0)
- {
- tmpInt = DerInteger.GetInstance(constraint, false).IntValueExact;
- if (tmpInt < explicitPolicy)
- {
- return tmpInt;
- }
- break;
- }
- }
- catch (ArgumentException e)
- {
- throw new PkixCertPathValidatorException(
- "Policy constraints extension contents cannot be decoded.", e, certPath, index);
- }
- }
- }
- return explicitPolicy;
- }
- internal static int PrepareNextCertI2(
- PkixCertPath certPath,
- int index,
- int policyMapping)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (i)
- //
- Asn1Sequence pc = null;
- try
- {
- pc = Asn1Sequence.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.PolicyConstraints));
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Policy constraints extension cannot be decoded.", e, certPath, index);
- }
- int tmpInt;
- if (pc != null)
- {
- IEnumerator policyConstraints = pc.GetEnumerator();
- while (policyConstraints.MoveNext())
- {
- try
- {
- Asn1TaggedObject constraint = Asn1TaggedObject.GetInstance(policyConstraints.Current);
- if (constraint.TagNo == 1)
- {
- tmpInt = DerInteger.GetInstance(constraint, false).IntValueExact;
- if (tmpInt < policyMapping)
- {
- return tmpInt;
- }
- break;
- }
- }
- catch (ArgumentException e)
- {
- throw new PkixCertPathValidatorException(
- "Policy constraints extension contents cannot be decoded.", e, certPath, index);
- }
- }
- }
- return policyMapping;
- }
- internal static void PrepareNextCertG(
- PkixCertPath certPath,
- int index,
- PkixNameConstraintValidator nameConstraintValidator)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (g) handle the name constraints extension
- //
- NameConstraints nc = null;
- try
- {
- Asn1Sequence ncSeq = Asn1Sequence.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.NameConstraints));
- if (ncSeq != null)
- {
- nc = new NameConstraints(ncSeq);
- }
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Name constraints extension could not be decoded.", e, certPath, index);
- }
- if (nc != null)
- {
- //
- // (g) (1) permitted subtrees
- //
- Asn1Sequence permitted = nc.PermittedSubtrees;
- if (permitted != null)
- {
- try
- {
- nameConstraintValidator.IntersectPermittedSubtree(permitted);
- }
- catch (Exception ex)
- {
- throw new PkixCertPathValidatorException(
- "Permitted subtrees cannot be build from name constraints extension.", ex, certPath, index);
- }
- }
- //
- // (g) (2) excluded subtrees
- //
- Asn1Sequence excluded = nc.ExcludedSubtrees;
- if (excluded != null)
- {
- IEnumerator e = excluded.GetEnumerator();
- try
- {
- while (e.MoveNext())
- {
- GeneralSubtree subtree = GeneralSubtree.GetInstance(e.Current);
- nameConstraintValidator.AddExcludedSubtree(subtree);
- }
- }
- catch (Exception ex)
- {
- throw new PkixCertPathValidatorException(
- "Excluded subtrees cannot be build from name constraints extension.", ex, certPath, index);
- }
- }
- }
- }
- internal static int PrepareNextCertJ(
- PkixCertPath certPath,
- int index,
- int inhibitAnyPolicy)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (j)
- //
- DerInteger iap = null;
- try
- {
- iap = DerInteger.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.InhibitAnyPolicy));
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Inhibit any-policy extension cannot be decoded.", e, certPath, index);
- }
- if (iap != null)
- {
- int _inhibitAnyPolicy = iap.IntValueExact;
- if (_inhibitAnyPolicy < inhibitAnyPolicy)
- return _inhibitAnyPolicy;
- }
- return inhibitAnyPolicy;
- }
- internal static void PrepareNextCertK(
- PkixCertPath certPath,
- int index)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (k)
- //
- BasicConstraints bc = null;
- try
- {
- bc = BasicConstraints.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.BasicConstraints));
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException("Basic constraints extension cannot be decoded.", e, certPath,
- index);
- }
- if (bc != null)
- {
- if (!(bc.IsCA()))
- throw new PkixCertPathValidatorException("Not a CA certificate");
- }
- else
- {
- throw new PkixCertPathValidatorException("Intermediate certificate lacks BasicConstraints");
- }
- }
- internal static int PrepareNextCertL(
- PkixCertPath certPath,
- int index,
- int maxPathLength)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (l)
- //
- if (!PkixCertPathValidatorUtilities.IsSelfIssued(cert))
- {
- if (maxPathLength <= 0)
- {
- throw new PkixCertPathValidatorException("Max path length not greater than zero", null, certPath, index);
- }
- return maxPathLength - 1;
- }
- return maxPathLength;
- }
- internal static int PrepareNextCertM(
- PkixCertPath certPath,
- int index,
- int maxPathLength)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (m)
- //
- BasicConstraints bc = null;
- try
- {
- bc = BasicConstraints.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.BasicConstraints));
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException("Basic constraints extension cannot be decoded.", e, certPath,
- index);
- }
- if (bc != null)
- {
- BigInteger _pathLengthConstraint = bc.PathLenConstraint;
- if (_pathLengthConstraint != null)
- {
- int _plc = _pathLengthConstraint.IntValue;
- if (_plc < maxPathLength)
- {
- return _plc;
- }
- }
- }
- return maxPathLength;
- }
- internal static void PrepareNextCertN(
- PkixCertPath certPath,
- int index)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (n)
- //
- bool[] _usage = cert.GetKeyUsage();
- if ((_usage != null) && !_usage[Rfc3280CertPathUtilities.KEY_CERT_SIGN])
- {
- throw new PkixCertPathValidatorException(
- "Issuer certificate keyusage extension is critical and does not permit key signing.", null,
- certPath, index);
- }
- }
- internal static void PrepareNextCertO(
- PkixCertPath certPath,
- int index,
- ISet criticalExtensions,
- IList pathCheckers)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (o)
- //
- IEnumerator tmpIter = pathCheckers.GetEnumerator();
- while (tmpIter.MoveNext())
- {
- try
- {
- ((PkixCertPathChecker)tmpIter.Current).Check(cert, criticalExtensions);
- }
- catch (PkixCertPathValidatorException e)
- {
- throw new PkixCertPathValidatorException(e.Message, e.InnerException, certPath, index);
- }
- }
- if (!criticalExtensions.IsEmpty)
- {
- throw new PkixCertPathValidatorException("Certificate has unsupported critical extension.", null, certPath,
- index);
- }
- }
- internal static int PrepareNextCertH1(
- PkixCertPath certPath,
- int index,
- int explicitPolicy)
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (h)
- //
- if (!PkixCertPathValidatorUtilities.IsSelfIssued(cert))
- {
- //
- // (1)
- //
- if (explicitPolicy != 0)
- return explicitPolicy - 1;
- }
- return explicitPolicy;
- }
- internal static int PrepareNextCertH2(
- PkixCertPath certPath,
- int index,
- int policyMapping)
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (h)
- //
- if (!PkixCertPathValidatorUtilities.IsSelfIssued(cert))
- {
- //
- // (2)
- //
- if (policyMapping != 0)
- return policyMapping - 1;
- }
- return policyMapping;
- }
- internal static int PrepareNextCertH3(
- PkixCertPath certPath,
- int index,
- int inhibitAnyPolicy)
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (h)
- //
- if (!PkixCertPathValidatorUtilities.IsSelfIssued(cert))
- {
- //
- // (3)
- //
- if (inhibitAnyPolicy != 0)
- return inhibitAnyPolicy - 1;
- }
- return inhibitAnyPolicy;
- }
- internal static int WrapupCertA(
- int explicitPolicy,
- X509Certificate cert)
- {
- //
- // (a)
- //
- if (!PkixCertPathValidatorUtilities.IsSelfIssued(cert) && (explicitPolicy != 0))
- {
- explicitPolicy--;
- }
- return explicitPolicy;
- }
- internal static int WrapupCertB(
- PkixCertPath certPath,
- int index,
- int explicitPolicy)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (b)
- //
- int tmpInt;
- Asn1Sequence pc = null;
- try
- {
- pc = Asn1Sequence.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.PolicyConstraints));
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException("Policy constraints could not be decoded.", e, certPath, index);
- }
- if (pc != null)
- {
- IEnumerator policyConstraints = pc.GetEnumerator();
- while (policyConstraints.MoveNext())
- {
- Asn1TaggedObject constraint = (Asn1TaggedObject)policyConstraints.Current;
- switch (constraint.TagNo)
- {
- case 0:
- try
- {
- tmpInt = DerInteger.GetInstance(constraint, false).IntValueExact;
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException(
- "Policy constraints requireExplicitPolicy field could not be decoded.", e, certPath,
- index);
- }
- if (tmpInt == 0)
- {
- return 0;
- }
- break;
- }
- }
- }
- return explicitPolicy;
- }
- internal static void WrapupCertF(
- PkixCertPath certPath,
- int index,
- IList pathCheckers,
- ISet criticalExtensions)
- //throws CertPathValidatorException
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- IEnumerator tmpIter = pathCheckers.GetEnumerator();
- while (tmpIter.MoveNext())
- {
- try
- {
- ((PkixCertPathChecker)tmpIter.Current).Check(cert, criticalExtensions);
- }
- catch (PkixCertPathValidatorException e)
- {
- throw new PkixCertPathValidatorException("Additional certificate path checker failed.", e, certPath,
- index);
- }
- }
- if (!criticalExtensions.IsEmpty)
- {
- throw new PkixCertPathValidatorException("Certificate has unsupported critical extension",
- null, certPath, index);
- }
- }
- internal static PkixPolicyNode WrapupCertG(
- PkixCertPath certPath,
- PkixParameters paramsPKIX,
- ISet userInitialPolicySet,
- int index,
- IList[] policyNodes,
- PkixPolicyNode validPolicyTree,
- ISet acceptablePolicies)
- {
- int n = certPath.Certificates.Count;
- //
- // (g)
- //
- PkixPolicyNode intersection;
- //
- // (g) (i)
- //
- if (validPolicyTree == null)
- {
- if (paramsPKIX.IsExplicitPolicyRequired)
- {
- throw new PkixCertPathValidatorException(
- "Explicit policy requested but none available.", null, certPath, index);
- }
- intersection = null;
- }
- else if (PkixCertPathValidatorUtilities.IsAnyPolicy(userInitialPolicySet)) // (g)
- // (ii)
- {
- if (paramsPKIX.IsExplicitPolicyRequired)
- {
- if (acceptablePolicies.IsEmpty)
- {
- throw new PkixCertPathValidatorException(
- "Explicit policy requested but none available.", null, certPath, index);
- }
- else
- {
- ISet _validPolicyNodeSet = new HashSet();
- for (int j = 0; j < policyNodes.Length; j++)
- {
- IList _nodeDepth = policyNodes[j];
- for (int k = 0; k < _nodeDepth.Count; k++)
- {
- PkixPolicyNode _node = (PkixPolicyNode)_nodeDepth[k];
- if (Rfc3280CertPathUtilities.ANY_POLICY.Equals(_node.ValidPolicy))
- {
- foreach (object o in _node.Children)
- {
- _validPolicyNodeSet.Add(o);
- }
- }
- }
- }
- foreach (PkixPolicyNode _node in _validPolicyNodeSet)
- {
- string _validPolicy = _node.ValidPolicy;
- if (!acceptablePolicies.Contains(_validPolicy))
- {
- // TODO?
- // validPolicyTree =
- // removePolicyNode(validPolicyTree, policyNodes,
- // _node);
- }
- }
- if (validPolicyTree != null)
- {
- for (int j = (n - 1); j >= 0; j--)
- {
- IList nodes = policyNodes[j];
- for (int k = 0; k < nodes.Count; k++)
- {
- PkixPolicyNode node = (PkixPolicyNode)nodes[k];
- if (!node.HasChildren)
- {
- validPolicyTree = PkixCertPathValidatorUtilities.RemovePolicyNode(validPolicyTree,
- policyNodes, node);
- }
- }
- }
- }
- }
- }
- intersection = validPolicyTree;
- }
- else
- {
- //
- // (g) (iii)
- //
- // This implementation is not exactly same as the one described in
- // RFC3280.
- // However, as far as the validation result is concerned, both
- // produce
- // adequate result. The only difference is whether AnyPolicy is
- // remain
- // in the policy tree or not.
- //
- // (g) (iii) 1
- //
- ISet _validPolicyNodeSet = new HashSet();
- for (int j = 0; j < policyNodes.Length; j++)
- {
- IList _nodeDepth = policyNodes[j];
- for (int k = 0; k < _nodeDepth.Count; k++)
- {
- PkixPolicyNode _node = (PkixPolicyNode)_nodeDepth[k];
- if (Rfc3280CertPathUtilities.ANY_POLICY.Equals(_node.ValidPolicy))
- {
- foreach (PkixPolicyNode _c_node in _node.Children)
- {
- if (!Rfc3280CertPathUtilities.ANY_POLICY.Equals(_c_node.ValidPolicy))
- {
- _validPolicyNodeSet.Add(_c_node);
- }
- }
- }
- }
- }
- //
- // (g) (iii) 2
- //
- IEnumerator _vpnsIter = _validPolicyNodeSet.GetEnumerator();
- while (_vpnsIter.MoveNext())
- {
- PkixPolicyNode _node = (PkixPolicyNode)_vpnsIter.Current;
- string _validPolicy = _node.ValidPolicy;
- if (!userInitialPolicySet.Contains(_validPolicy))
- {
- validPolicyTree = PkixCertPathValidatorUtilities.RemovePolicyNode(validPolicyTree, policyNodes, _node);
- }
- }
- //
- // (g) (iii) 4
- //
- if (validPolicyTree != null)
- {
- for (int j = (n - 1); j >= 0; j--)
- {
- IList nodes = policyNodes[j];
- for (int k = 0; k < nodes.Count; k++)
- {
- PkixPolicyNode node = (PkixPolicyNode)nodes[k];
- if (!node.HasChildren)
- {
- validPolicyTree = PkixCertPathValidatorUtilities.RemovePolicyNode(validPolicyTree, policyNodes,
- node);
- }
- }
- }
- }
- intersection = validPolicyTree;
- }
- return intersection;
- }
- /**
- * If use-deltas is set, verify the issuer and scope of the delta CRL.
- *
- * @param deltaCRL The delta CRL.
- * @param completeCRL The complete CRL.
- * @param pkixParams The PKIX paramaters.
- * @throws AnnotatedException if an exception occurs.
- */
- internal static void ProcessCrlC(
- X509Crl deltaCRL,
- X509Crl completeCRL,
- PkixParameters pkixParams)
- {
- if (deltaCRL == null)
- return;
- IssuingDistributionPoint completeidp = null;
- try
- {
- completeidp = IssuingDistributionPoint.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(completeCRL, X509Extensions.IssuingDistributionPoint));
- }
- catch (Exception e)
- {
- throw new Exception("000 Issuing distribution point extension could not be decoded.", e);
- }
- if (pkixParams.IsUseDeltasEnabled)
- {
- // (c) (1)
- if (!deltaCRL.IssuerDN.Equivalent(completeCRL.IssuerDN, true))
- throw new Exception("Complete CRL issuer does not match delta CRL issuer.");
- // (c) (2)
- IssuingDistributionPoint deltaidp = null;
- try
- {
- deltaidp = IssuingDistributionPoint.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(deltaCRL, X509Extensions.IssuingDistributionPoint));
- }
- catch (Exception e)
- {
- throw new Exception(
- "Issuing distribution point extension from delta CRL could not be decoded.", e);
- }
- if (!BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Equals(completeidp, deltaidp))
- {
- throw new Exception(
- "Issuing distribution point extension from delta CRL and complete CRL does not match.");
- }
- // (c) (3)
- Asn1Object completeKeyIdentifier = null;
- try
- {
- completeKeyIdentifier = PkixCertPathValidatorUtilities.GetExtensionValue(
- completeCRL, X509Extensions.AuthorityKeyIdentifier);
- }
- catch (Exception e)
- {
- throw new Exception(
- "Authority key identifier extension could not be extracted from complete CRL.", e);
- }
- Asn1Object deltaKeyIdentifier = null;
- try
- {
- deltaKeyIdentifier = PkixCertPathValidatorUtilities.GetExtensionValue(
- deltaCRL, X509Extensions.AuthorityKeyIdentifier);
- }
- catch (Exception e)
- {
- throw new Exception(
- "Authority key identifier extension could not be extracted from delta CRL.", e);
- }
- if (completeKeyIdentifier == null)
- throw new Exception("CRL authority key identifier is null.");
- if (deltaKeyIdentifier == null)
- throw new Exception("Delta CRL authority key identifier is null.");
- if (!completeKeyIdentifier.Equals(deltaKeyIdentifier))
- {
- throw new Exception(
- "Delta CRL authority key identifier does not match complete CRL authority key identifier.");
- }
- }
- }
- internal static void ProcessCrlI(
- DateTime validDate,
- X509Crl deltacrl,
- object cert,
- CertStatus certStatus,
- PkixParameters pkixParams)
- {
- if (pkixParams.IsUseDeltasEnabled && deltacrl != null)
- {
- PkixCertPathValidatorUtilities.GetCertStatus(validDate, deltacrl, cert, certStatus);
- }
- }
- internal static void ProcessCrlJ(
- DateTime validDate,
- X509Crl completecrl,
- object cert,
- CertStatus certStatus)
- {
- if (certStatus.Status == CertStatus.Unrevoked)
- {
- PkixCertPathValidatorUtilities.GetCertStatus(validDate, completecrl, cert, certStatus);
- }
- }
- internal static PkixPolicyNode ProcessCertE(
- PkixCertPath certPath,
- int index,
- PkixPolicyNode validPolicyTree)
- {
- IList certs = certPath.Certificates;
- X509Certificate cert = (X509Certificate)certs[index];
- //
- // (e)
- //
- Asn1Sequence certPolicies = null;
- try
- {
- certPolicies = Asn1Sequence.GetInstance(
- PkixCertPathValidatorUtilities.GetExtensionValue(cert, X509Extensions.CertificatePolicies));
- }
- catch (Exception e)
- {
- throw new PkixCertPathValidatorException("Could not read certificate policies extension from certificate.",
- e, certPath, index);
- }
- if (certPolicies == null)
- {
- validPolicyTree = null;
- }
- return validPolicyTree;
- }
- internal static readonly string[] CrlReasons = new string[]
- {
- "unspecified",
- "keyCompromise",
- "cACompromise",
- "affiliationChanged",
- "superseded",
- "cessationOfOperation",
- "certificateHold",
- "unknown",
- "removeFromCRL",
- "privilegeWithdrawn",
- "aACompromise"
- };
- }
- }
- #pragma warning restore
- #endif
|