X9FieldID.cs :  » PDF » iTextSharp » Org » BouncyCastle » Asn1 » X9 » 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 » X9 » X9FieldID.cs
using Org.BouncyCastle.Math;

namespace Org.BouncyCastle.Asn1.X9{
    /**
     * ASN.1 def for Elliptic-Curve Field ID structure. See
     * X9.62, for further details.
     */
    public class X9FieldID
        : Asn1Encodable
    {
        private readonly DerObjectIdentifier  id;
        private readonly Asn1Object parameters;

    /**
     * Constructor for elliptic curves over prime fields
     * <code>F<sub>2</sub></code>.
     * @param primeP The prime <code>p</code> defining the prime field.
     */
    public X9FieldID(
      BigInteger primeP)
    {
      this.id = X9ObjectIdentifiers.PrimeField;
      this.parameters = new DerInteger(primeP);
    }

    /**
     * Constructor for elliptic curves over binary fields
     * <code>F<sub>2<sup>m</sup></sub></code>.
     * @param m  The exponent <code>m</code> of
     * <code>F<sub>2<sup>m</sup></sub></code>.
     * @param k1 The integer <code>k1</code> where <code>x<sup>m</sup> +
     * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
     * represents the reduction polynomial <code>f(z)</code>.
     * @param k2 The integer <code>k2</code> where <code>x<sup>m</sup> +
     * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
     * represents the reduction polynomial <code>f(z)</code>.
     * @param k3 The integer <code>k3</code> where <code>x<sup>m</sup> +
     * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
     * represents the reduction polynomial <code>f(z)</code>..
     */
    public X9FieldID(
      int m,
      int k1,
      int k2,
      int k3)
    {
      this.id = X9ObjectIdentifiers.CharacteristicTwoField;

      Asn1EncodableVector fieldIdParams = new Asn1EncodableVector(new DerInteger(m));

      if (k2 == 0)
      {
        fieldIdParams.Add(
          X9ObjectIdentifiers.TPBasis,
          new DerInteger(k1));
      }
      else
      {
        fieldIdParams.Add(
          X9ObjectIdentifiers.PPBasis,
          new DerSequence(
            new DerInteger(k1),
            new DerInteger(k2),
            new DerInteger(k3)));
      }

      this.parameters = new DerSequence(fieldIdParams);
    }

    internal X9FieldID(
      Asn1Sequence seq)
    {
      this.id = (DerObjectIdentifier) seq[0];
      this.parameters = (Asn1Object) seq[1];
    }

    public DerObjectIdentifier Identifier
        {
            get { return id; }
        }

    public Asn1Object Parameters
        {
            get { return parameters; }
        }

    /**
         * Produce a Der encoding of the following structure.
         * <pre>
         *  FieldID ::= Sequence {
         *      fieldType       FIELD-ID.&amp;id({IOSet}),
         *      parameters      FIELD-ID.&amp;Type({IOSet}{&#64;fieldType})
         *  }
         * </pre>
         */
        public override Asn1Object ToAsn1Object()
        {
      return new DerSequence(id, parameters);
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.