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

using Org.BouncyCastle.Asn1.X500;
using Org.BouncyCastle.Asn1.X509;

namespace Org.BouncyCastle.Asn1.IsisMtt.X509{
  /**
  * Attribute to indicate that the certificate holder may sign in the name of a
  * third person.
  * <p>
  * ISIS-MTT PROFILE: The corresponding ProcurationSyntax contains either the
  * name of the person who is represented (subcomponent thirdPerson) or a
  * reference to his/her base certificate (in the component signingFor,
  * subcomponent certRef), furthermore the optional components country and
  * typeSubstitution to indicate the country whose laws apply, and respectively
  * the type of procuration (e.g. manager, procuration, custody).
  * </p>
  * <p>
  * ISIS-MTT PROFILE: The GeneralName MUST be of type directoryName and MAY only
  * contain: - RFC3039 attributes, except pseudonym (countryName, commonName,
  * surname, givenName, serialNumber, organizationName, organizationalUnitName,
  * stateOrProvincename, localityName, postalAddress) and - SubjectDirectoryName
  * attributes (title, dateOfBirth, placeOfBirth, gender, countryOfCitizenship,
  * countryOfResidence and NameAtBirth).
  * </p>
  * <pre>
  *               ProcurationSyntax ::= SEQUENCE {
  *                 country [1] EXPLICIT PrintableString(SIZE(2)) OPTIONAL,
  *                 typeOfSubstitution [2] EXPLICIT DirectoryString (SIZE(1..128)) OPTIONAL,
  *                 signingFor [3] EXPLICIT SigningFor 
  *               }
  *               
  *               SigningFor ::= CHOICE 
  *               { 
  *                 thirdPerson GeneralName,
  *                 certRef IssuerSerial 
  *               }
  * </pre>
  * 
  */
  public class ProcurationSyntax
    : Asn1Encodable
  {
    private readonly string        country;
    private readonly DirectoryString  typeOfSubstitution;
    private readonly GeneralName    thirdPerson;
    private readonly IssuerSerial    certRef;

    public static ProcurationSyntax GetInstance(
      object obj)
    {
      if (obj == null || obj is ProcurationSyntax)
      {
        return (ProcurationSyntax) obj;
      }

      if (obj is Asn1Sequence)
      {
        return new ProcurationSyntax((Asn1Sequence) obj);
      }

      throw new ArgumentException("unknown object in factory: " + obj.GetType().Name, "obj");
    }

    /**
    * Constructor from Asn1Sequence.
    * <p/>
    * The sequence is of type ProcurationSyntax:
    * <p/>
    * <pre>
    *               ProcurationSyntax ::= SEQUENCE {
    *                 country [1] EXPLICIT PrintableString(SIZE(2)) OPTIONAL,
    *                 typeOfSubstitution [2] EXPLICIT DirectoryString (SIZE(1..128)) OPTIONAL,
    *                 signingFor [3] EXPLICIT SigningFor
    *               }
    * <p/>
    *               SigningFor ::= CHOICE
    *               {
    *                 thirdPerson GeneralName,
    *                 certRef IssuerSerial
    *               }
    * </pre>
    *
    * @param seq The ASN.1 sequence.
    */
    private ProcurationSyntax(
      Asn1Sequence seq)
    {
      if (seq.Count < 1 || seq.Count > 3)
        throw new ArgumentException("Bad sequence size: " + seq.Count);

      IEnumerator e = seq.GetEnumerator();

      while (e.MoveNext())
      {
        Asn1TaggedObject o = Asn1TaggedObject.GetInstance(e.Current);
        switch (o.TagNo)
        {
          case 1:
            country = DerPrintableString.GetInstance(o, true).GetString();
            break;
          case 2:
            typeOfSubstitution = DirectoryString.GetInstance(o, true);
            break;
          case 3:
            Asn1Object signingFor = o.GetObject();
            if (signingFor is Asn1TaggedObject)
            {
              thirdPerson = GeneralName.GetInstance(signingFor);
            }
            else
            {
              certRef = IssuerSerial.GetInstance(signingFor);
            }
            break;
          default:
            throw new ArgumentException("Bad tag number: " + o.TagNo);
        }
      }
    }

    /**
    * Constructor from a given details.
    * <p/>
    * <p/>
    * Either <code>generalName</code> or <code>certRef</code> MUST be
    * <code>null</code>.
    *
    * @param country            The country code whose laws apply.
    * @param typeOfSubstitution The type of procuration.
    * @param certRef            Reference to certificate of the person who is represented.
    */
    public ProcurationSyntax(
      string      country,
      DirectoryString  typeOfSubstitution,
      IssuerSerial  certRef)
    {
      this.country = country;
      this.typeOfSubstitution = typeOfSubstitution;
      this.thirdPerson = null;
      this.certRef = certRef;
    }

    /**
     * Constructor from a given details.
     * <p/>
     * <p/>
     * Either <code>generalName</code> or <code>certRef</code> MUST be
     * <code>null</code>.
     *
     * @param country            The country code whose laws apply.
     * @param typeOfSubstitution The type of procuration.
     * @param thirdPerson        The GeneralName of the person who is represented.
     */
    public ProcurationSyntax(
      string      country,
      DirectoryString  typeOfSubstitution,
      GeneralName    thirdPerson)
    {
      this.country = country;
      this.typeOfSubstitution = typeOfSubstitution;
      this.thirdPerson = thirdPerson;
      this.certRef = null;
    }

    public virtual string Country
    {
      get { return country; }
    }

    public virtual DirectoryString TypeOfSubstitution
    {
      get { return typeOfSubstitution; }
    }

    public virtual GeneralName ThirdPerson
    {
      get { return thirdPerson; }
    }

    public virtual IssuerSerial CertRef
    {
      get { return certRef; }
    }

    /**
    * Produce an object suitable for an Asn1OutputStream.
    * <p/>
    * Returns:
    * <p/>
    * <pre>
    *               ProcurationSyntax ::= SEQUENCE {
    *                 country [1] EXPLICIT PrintableString(SIZE(2)) OPTIONAL,
    *                 typeOfSubstitution [2] EXPLICIT DirectoryString (SIZE(1..128)) OPTIONAL,
    *                 signingFor [3] EXPLICIT SigningFor
    *               }
    * <p/>
    *               SigningFor ::= CHOICE
    *               {
    *                 thirdPerson GeneralName,
    *                 certRef IssuerSerial
    *               }
    * </pre>
    *
    * @return an Asn1Object
    */
    public override Asn1Object ToAsn1Object()
    {
      Asn1EncodableVector vec = new Asn1EncodableVector();
      if (country != null)
      {
        vec.Add(new DerTaggedObject(true, 1, new DerPrintableString(country, true)));
      }
      if (typeOfSubstitution != null)
      {
        vec.Add(new DerTaggedObject(true, 2, typeOfSubstitution));
      }
      if (thirdPerson != null)
      {
        vec.Add(new DerTaggedObject(true, 3, thirdPerson));
      }
      else
      {
        vec.Add(new DerTaggedObject(true, 3, certRef));
      }

      return new DerSequence(vec);
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.