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

namespace Org.BouncyCastle.Asn1.X509{
  /// <remarks>Generator for X.509 extensions</remarks>
  public class X509ExtensionsGenerator
  {
    private Hashtable extensions = new Hashtable();
    private ArrayList extOrdering = new ArrayList();

    /// <summary>Reset the generator</summary>
    public void Reset()
    {
      extensions = new Hashtable();
      extOrdering = new ArrayList();
    }

    /// <summary>
    /// Add an extension with the given oid and the passed in value to be included
    /// in the OCTET STRING associated with the extension.
    /// </summary>
    /// <param name="oid">OID for the extension.</param>
    /// <param name="critical">True if critical, false otherwise.</param>
    /// <param name="extValue">The ASN.1 object to be included in the extension.</param>
    public void AddExtension(
      DerObjectIdentifier  oid,
      bool        critical,
      Asn1Encodable    extValue)
    {
      byte[] encoded;
      try
      {
        encoded = extValue.GetDerEncoded();
      }
      catch (Exception e)
      {
        throw new ArgumentException("error encoding value: " + e);
      }

      this.AddExtension(oid, critical, encoded);
    }

    /// <summary>
    /// Add an extension with the given oid and the passed in byte array to be wrapped
    /// in the OCTET STRING associated with the extension.
    /// </summary>
    /// <param name="oid">OID for the extension.</param>
    /// <param name="critical">True if critical, false otherwise.</param>
    /// <param name="extValue">The byte array to be wrapped.</param>
    public void AddExtension(
      DerObjectIdentifier  oid,
      bool        critical,
      byte[]        extValue)
    {
      if (extensions.ContainsKey(oid))
      {
        throw new ArgumentException("extension " + oid + " already added");
      }

      extOrdering.Add(oid);
      extensions.Add(oid, new X509Extension(critical, new DerOctetString(extValue)));
    }

    /// <summary>Return true if there are no extension present in this generator.</summary>
    /// <returns>True if empty, false otherwise</returns>
    public bool IsEmpty
    {
      get { return extOrdering.Count < 1; }
    }

    /// <summary>Generate an X509Extensions object based on the current state of the generator.</summary>
    /// <returns>An <c>X509Extensions</c> object</returns>
    public X509Extensions Generate()
    {
      return new X509Extensions(extOrdering, extensions);
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.