PkixAttrCertPathValidator.cs :  » PDF » iTextSharp » Org » BouncyCastle » Pkix » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » PDF » iTextSharp 
iTextSharp » Org » BouncyCastle » Pkix » PkixAttrCertPathValidator.cs
using System;

using Org.BouncyCastle.X509;
using Org.BouncyCastle.X509.Store;

namespace Org.BouncyCastle.Pkix{
  /**
  * CertPathValidatorSpi implementation for X.509 Attribute Certificates la RFC 3281.
  * 
  * @see org.bouncycastle.x509.ExtendedPkixParameters
  */
  public class PkixAttrCertPathValidator
  //    extends CertPathValidatorSpi
  {
    /**
    * Validates an attribute certificate with the given certificate path.
    * 
    * <p>
    * <code>params</code> must be an instance of
    * <code>ExtendedPkixParameters</code>.
    * </p><p>
    * The target constraints in the <code>params</code> must be an
    * <code>X509AttrCertStoreSelector</code> with at least the attribute
    * certificate criterion set. Obey that also target informations may be
    * necessary to correctly validate this attribute certificate.
    * </p><p>
    * The attribute certificate issuer must be added to the trusted attribute
    * issuers with {@link ExtendedPkixParameters#setTrustedACIssuers(Set)}.
    * </p>
    * @param certPath The certificate path which belongs to the attribute
    *            certificate issuer public key certificate.
    * @param params The PKIX parameters.
    * @return A <code>PKIXCertPathValidatorResult</code> of the result of
    *         validating the <code>certPath</code>.
    * @throws InvalidAlgorithmParameterException if <code>params</code> is
    *             inappropriate for this validator.
    * @throws CertPathValidatorException if the verification fails.
    */
    public virtual PkixCertPathValidatorResult Validate(
      PkixCertPath  certPath,
      PkixParameters  pkixParams)
    {
      IX509Selector certSelect = pkixParams.GetTargetConstraints();
      if (!(certSelect is X509AttrCertStoreSelector))
      {
        throw new ArgumentException(
          "TargetConstraints must be an instance of " + typeof(X509AttrCertStoreSelector).FullName,
          "pkixParams");
      }
      IX509AttributeCertificate attrCert = ((X509AttrCertStoreSelector) certSelect).AttributeCert;

      PkixCertPath holderCertPath = Rfc3281CertPathUtilities.ProcessAttrCert1(attrCert, pkixParams);
      PkixCertPathValidatorResult result = Rfc3281CertPathUtilities.ProcessAttrCert2(certPath, pkixParams);
      X509Certificate issuerCert = (X509Certificate)certPath.Certificates[0];
      Rfc3281CertPathUtilities.ProcessAttrCert3(issuerCert, pkixParams);
      Rfc3281CertPathUtilities.ProcessAttrCert4(issuerCert, pkixParams);
      Rfc3281CertPathUtilities.ProcessAttrCert5(attrCert, pkixParams);
      // 6 already done in X509AttrCertStoreSelector
      Rfc3281CertPathUtilities.ProcessAttrCert7(attrCert, certPath, holderCertPath, pkixParams);
      Rfc3281CertPathUtilities.AdditionalChecks(attrCert, pkixParams);
      DateTime date;
      try
      {
        date = PkixCertPathValidatorUtilities.GetValidCertDateFromValidityModel(pkixParams, null, -1);
      }
      catch (Exception e)
      {
        throw new PkixCertPathValidatorException(
          "Could not get validity date from attribute certificate.", e);
      }
      Rfc3281CertPathUtilities.CheckCrls(attrCert, pkixParams, issuerCert, date, certPath.Certificates);
      return result;
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.