X509V2CRLGenerator.cs :  » PDF » iTextSharp » Org » BouncyCastle » X509 » 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 » X509 » X509V2CRLGenerator.cs
using System;
using System.Collections;
using System.IO;

using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Parameters;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Security;
using Org.BouncyCastle.Security.Certificates;
using Org.BouncyCastle.Utilities.Collections;

namespace Org.BouncyCastle.X509{
  /**
  * class to produce an X.509 Version 2 CRL.
  */
  public class X509V2CrlGenerator
  {
    private readonly X509ExtensionsGenerator extGenerator = new X509ExtensionsGenerator();

    private V2TbsCertListGenerator  tbsGen;
    private DerObjectIdentifier    sigOID;
    private AlgorithmIdentifier    sigAlgId;
    private string          signatureAlgorithm;

    public X509V2CrlGenerator()
    {
      tbsGen = new V2TbsCertListGenerator();
    }

    /**
    * reset the generator
    */
    public void Reset()
    {
      tbsGen = new V2TbsCertListGenerator();
      extGenerator.Reset();
    }

    /**
    * Set the issuer distinguished name - the issuer is the entity whose private key is used to sign the
    * certificate.
    */
    public void SetIssuerDN(
      X509Name issuer)
    {
      tbsGen.SetIssuer(issuer);
    }

    public void SetThisUpdate(
      DateTime date)
    {
      tbsGen.SetThisUpdate(new Time(date));
    }

    public void SetNextUpdate(
      DateTime date)
    {
      tbsGen.SetNextUpdate(new Time(date));
    }

    /**
    * Reason being as indicated by CrlReason, i.e. CrlReason.KeyCompromise
    * or 0 if CrlReason is not to be used
    **/
    public void AddCrlEntry(
      BigInteger  userCertificate,
      DateTime  revocationDate,
      int      reason)
    {
      tbsGen.AddCrlEntry(new DerInteger(userCertificate), new Time(revocationDate), reason);
    }

    /**
    * Add a CRL entry with an Invalidity Date extension as well as a CrlReason extension.
    * Reason being as indicated by CrlReason, i.e. CrlReason.KeyCompromise
    * or 0 if CrlReason is not to be used
    **/
    public void AddCrlEntry(
      BigInteger  userCertificate,
      DateTime  revocationDate,
      int      reason,
      DateTime  invalidityDate)
    {
      tbsGen.AddCrlEntry(new DerInteger(userCertificate), new Time(revocationDate), reason, new DerGeneralizedTime(invalidityDate));
    }

    /**
    * Add a CRL entry with extensions.
    **/
    public void AddCrlEntry(
      BigInteger    userCertificate,
      DateTime    revocationDate,
      X509Extensions  extensions)
    {
      tbsGen.AddCrlEntry(new DerInteger(userCertificate), new Time(revocationDate), extensions);
    }

    /**
    * Add the CRLEntry objects contained in a previous CRL.
    *
    * @param other the X509Crl to source the other entries from.
    */
    public void AddCrl(
      X509Crl other)
    {
      if (other == null)
        throw new ArgumentNullException("other");

      ISet revocations = other.GetRevokedCertificates();

      if (revocations != null)
      {
        foreach (X509CrlEntry entry in revocations)
        {
          try
          {
            tbsGen.AddCrlEntry(
              Asn1Sequence.GetInstance(
              Asn1Object.FromByteArray(entry.GetEncoded())));
          }
          catch (IOException e)
          {
            throw new CrlException("exception processing encoding of CRL", e);
          }
        }
      }
    }

    /**
    * Set the signature algorithm. This can be either a name or an oid, names
    * are treated as case insensitive.
    *
    * @param signatureAlgorithm string representation of the algorithm name.
    */
    public void SetSignatureAlgorithm(
      string signatureAlgorithm)
    {
      this.signatureAlgorithm = signatureAlgorithm;

      try
      {
        sigOID = X509Utilities.GetAlgorithmOid(signatureAlgorithm);
      }
      catch (Exception e)
      {
        throw new ArgumentException("Unknown signature type requested", e);
      }

      sigAlgId = X509Utilities.GetSigAlgID(sigOID, signatureAlgorithm);

      tbsGen.SetSignature(sigAlgId);
    }

    /**
    * add a given extension field for the standard extensions tag (tag 0)
    */
    public void AddExtension(
      string      oid,
      bool      critical,
      Asn1Encodable  extensionValue)
    {
      extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, extensionValue);
    }

    /**
    * add a given extension field for the standard extensions tag (tag 0)
    */
    public void AddExtension(
      DerObjectIdentifier  oid,
      bool        critical,
      Asn1Encodable    extensionValue)
    {
      extGenerator.AddExtension(oid, critical, extensionValue);
    }

    /**
    * add a given extension field for the standard extensions tag (tag 0)
    */
    public void AddExtension(
      string  oid,
      bool  critical,
      byte[]  extensionValue)
    {
      extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, new DerOctetString(extensionValue));
    }

    /**
    * add a given extension field for the standard extensions tag (tag 0)
    */
    public void AddExtension(
      DerObjectIdentifier  oid,
      bool        critical,
      byte[]        extensionValue)
    {
      extGenerator.AddExtension(oid, critical, new DerOctetString(extensionValue));
    }

    /// <summary>Generate an X509 CRL, based on the current issuer and subject.</summary>
    /// <param name="privateKey">The key used for signing.</param>
    public X509Crl Generate(
      AsymmetricKeyParameter privateKey)
    {
      return Generate(privateKey, null);
    }

    /// <summary>Generate an X509 CRL, based on the current issuer and subject.</summary>
    /// <param name="privateKey">The key used for signing.</param>
    /// <param name="random">A user-defined source of randomness.</param>
    public X509Crl Generate(
      AsymmetricKeyParameter  privateKey,
      SecureRandom      random)
    {
      TbsCertificateList tbsCrl = GenerateCertList();
      byte[] signature;

      try
      {
        signature = X509Utilities.GetSignatureForObject(
          sigOID, signatureAlgorithm, privateKey, random, tbsCrl);
      }
      catch (IOException e)
      {
        // TODO
//        throw new ExtCrlException("cannot generate CRL encoding", e);
        throw new CrlException("cannot generate CRL encoding", e);
      }

      return GenerateJcaObject(tbsCrl, signature);
    }

    private TbsCertificateList GenerateCertList()
    {
      if (!extGenerator.IsEmpty)
      {
        tbsGen.SetExtensions(extGenerator.Generate());
      }

      return tbsGen.GenerateTbsCertList();
    }

    private X509Crl GenerateJcaObject(
      TbsCertificateList  tbsCrl,
      byte[]        signature)
    {
      return new X509Crl(
        CertificateList.GetInstance(
          new DerSequence(tbsCrl, sigAlgId, new DerBitString(signature))));
    }

    /// <summary>
    /// Allows enumeration of the signature names supported by the generator.
    /// </summary>
    public IEnumerable SignatureAlgNames
    {
      get { return X509Utilities.GetAlgNames(); }
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.