X509V2AttributeCertificateGenerator.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 » X509V2AttributeCertificateGenerator.cs
using System;
using System.Collections;

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

namespace Org.BouncyCastle.X509{
  /// <remarks>Class to produce an X.509 Version 2 AttributeCertificate.</remarks>
  public class X509V2AttributeCertificateGenerator
  {
    private readonly X509ExtensionsGenerator extGenerator = new X509ExtensionsGenerator();

    private V2AttributeCertificateInfoGenerator  acInfoGen;
    private DerObjectIdentifier sigOID;
    private AlgorithmIdentifier sigAlgId;
    private string signatureAlgorithm;

    public X509V2AttributeCertificateGenerator()
    {
      acInfoGen = new V2AttributeCertificateInfoGenerator();
    }

    /// <summary>Reset the generator</summary>
    public void Reset()
    {
      acInfoGen = new V2AttributeCertificateInfoGenerator();
      extGenerator.Reset();
    }

    /// <summary>Set the Holder of this Attribute Certificate.</summary>
    public void SetHolder(
      AttributeCertificateHolder holder)
    {
      acInfoGen.SetHolder(holder.holder);
    }

    /// <summary>Set the issuer.</summary>
    public void SetIssuer(
      AttributeCertificateIssuer issuer)
    {
      acInfoGen.SetIssuer(AttCertIssuer.GetInstance(issuer.form));
    }

    /// <summary>Set the serial number for the certificate.</summary>
    public void SetSerialNumber(
      BigInteger serialNumber)
    {
      acInfoGen.SetSerialNumber(new DerInteger(serialNumber));
    }

    public void SetNotBefore(
      DateTime date)
    {
      acInfoGen.SetStartDate(new DerGeneralizedTime(date));
    }

    public void SetNotAfter(
      DateTime date)
    {
      acInfoGen.SetEndDate(new DerGeneralizedTime(date));
    }

    /// <summary>
    /// Set the signature algorithm. This can be either a name or an OID, names
    /// are treated as case insensitive.
    /// </summary>
    /// <param name="signatureAlgorithm">The algorithm name.</param>
    public void SetSignatureAlgorithm(
      string signatureAlgorithm)
    {
      this.signatureAlgorithm = signatureAlgorithm;

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

      sigAlgId = X509Utilities.GetSigAlgID(sigOID, signatureAlgorithm);

      acInfoGen.SetSignature(sigAlgId);
    }

    /// <summary>Add an attribute.</summary>
    public void AddAttribute(
      X509Attribute attribute)
    {
      acInfoGen.AddAttribute(AttributeX509.GetInstance(attribute.ToAsn1Object()));
    }

    public void SetIssuerUniqueId(
      bool[] iui)
    {
      // TODO convert bool array to bit string
      //acInfoGen.SetIssuerUniqueID(iui);
      throw Platform.CreateNotImplementedException("SetIssuerUniqueId()");
    }

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

    /// <summary>
    /// Add a given extension field for the standard extensions tag.
    /// The value parameter becomes the contents of the octet string associated
    /// with the extension.
    /// </summary>
    public void AddExtension(
      string  oid,
      bool  critical,
      byte[]  extensionValue)
    {
      extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, extensionValue);
    }

    /// <summary>
    /// Generate an X509 certificate, based on the current issuer and subject.
    /// </summary>
    public IX509AttributeCertificate Generate(
      AsymmetricKeyParameter publicKey)
    {
      return Generate(publicKey, null);
    }

    /// <summary>
    /// Generate an X509 certificate, based on the current issuer and subject,
    /// using the supplied source of randomness, if required.
    /// </summary>
    public IX509AttributeCertificate Generate(
      AsymmetricKeyParameter  publicKey,
      SecureRandom      random)
    {
      if (!extGenerator.IsEmpty)
      {
        acInfoGen.SetExtensions(extGenerator.Generate());
      }

      AttributeCertificateInfo acInfo = acInfoGen.GenerateAttributeCertificateInfo();

      Asn1EncodableVector v = new Asn1EncodableVector();

      v.Add(acInfo, sigAlgId);

      try
      {
        v.Add(new DerBitString(X509Utilities.GetSignatureForObject(sigOID, signatureAlgorithm, publicKey, random, acInfo)));

        return new X509V2AttributeCertificate(AttributeCertificate.GetInstance(new DerSequence(v)));
      }
      catch (Exception e)
      {
        // TODO
//        throw new ExtCertificateEncodingException("constructed invalid certificate", e);
        throw new CertificateEncodingException("constructed invalid certificate", e);
      }
    }

    /// <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.