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

using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.Ess;
using Org.BouncyCastle.Asn1.Pkcs;
using Org.BouncyCastle.Asn1.Tsp;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.Cms;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Security;
using Org.BouncyCastle.Security.Certificates;
using Org.BouncyCastle.X509;
using Org.BouncyCastle.X509.Store;

namespace Org.BouncyCastle.Tsp{
  public class TimeStampTokenGenerator
  {
    private int accuracySeconds = -1;
    private int accuracyMillis = -1;
    private int accuracyMicros = -1;
    private bool ordering = false;
    private GeneralName tsa = null;
    private string tsaPolicyOID;

    private AsymmetricKeyParameter  key;
    private X509Certificate      cert;
    private string          digestOID;
    private Asn1.Cms.AttributeTable  signedAttr;
    private Asn1.Cms.AttributeTable  unsignedAttr;
    private IX509Store        x509Certs;
    private IX509Store        x509Crls;

    /**
     * basic creation - only the default attributes will be included here.
     */
    public TimeStampTokenGenerator(
      AsymmetricKeyParameter  key,
      X509Certificate      cert,
      string          digestOID,
      string          tsaPolicyOID)
      : this(key, cert, digestOID, tsaPolicyOID, null, null)
    {
    }

    /**
     * create with a signer with extra signed/unsigned attributes.
     */
    public TimeStampTokenGenerator(
      AsymmetricKeyParameter  key,
      X509Certificate      cert,
      string          digestOID,
      string          tsaPolicyOID,
      Asn1.Cms.AttributeTable  signedAttr,
      Asn1.Cms.AttributeTable  unsignedAttr)
    {
      this.key = key;
      this.cert = cert;
      this.digestOID = digestOID;
      this.tsaPolicyOID = tsaPolicyOID;
      this.unsignedAttr = unsignedAttr;

      TspUtil.ValidateCertificate(cert);

      //
      // Add the ESSCertID attribute
      //
      Hashtable signedAttrs;
      if (signedAttr != null)
      {
        signedAttrs = signedAttr.ToHashtable();
      }
      else
      {
        signedAttrs = new Hashtable();
      }

      try
      {
        byte[] hash = DigestUtilities.CalculateDigest("SHA-1", cert.GetEncoded());

        EssCertID essCertid = new EssCertID(hash);

        Asn1.Cms.Attribute attr = new Asn1.Cms.Attribute(
          PkcsObjectIdentifiers.IdAASigningCertificate,
          new DerSet(new SigningCertificate(essCertid)));

        signedAttrs[attr.AttrType] = attr;
      }
      catch (CertificateEncodingException e)
      {
        throw new TspException("Exception processing certificate.", e);
      }
      catch (SecurityUtilityException e)
      {
        throw new TspException("Can't find a SHA-1 implementation.", e);
      }

      this.signedAttr = new Asn1.Cms.AttributeTable(signedAttrs);
    }

    public void SetCertificates(
      IX509Store certificates)
    {
      this.x509Certs = certificates;
    }

    public void SetCrls(
      IX509Store crls)
    {
      this.x509Crls = crls;
    }

    public void SetAccuracySeconds(
      int accuracySeconds)
    {
      this.accuracySeconds = accuracySeconds;
    }

    public void SetAccuracyMillis(
      int accuracyMillis)
    {
      this.accuracyMillis = accuracyMillis;
    }

    public void SetAccuracyMicros(
      int accuracyMicros)
    {
      this.accuracyMicros = accuracyMicros;
    }

    public void SetOrdering(
      bool ordering)
    {
      this.ordering = ordering;
    }

    public void SetTsa(
      GeneralName tsa)
    {
      this.tsa = tsa;
    }

    //------------------------------------------------------------------------------

    public TimeStampToken Generate(
      TimeStampRequest  request,
      BigInteger      serialNumber,
      DateTime      genTime)
    {
      DerObjectIdentifier digestAlgOID = new DerObjectIdentifier(request.MessageImprintAlgOid);

      AlgorithmIdentifier algID = new AlgorithmIdentifier(digestAlgOID, DerNull.Instance);
      MessageImprint messageImprint = new MessageImprint(algID, request.GetMessageImprintDigest());

      Accuracy accuracy = null;
      if (accuracySeconds > 0 || accuracyMillis > 0 || accuracyMicros > 0)
      {
        DerInteger seconds = null;
        if (accuracySeconds > 0)
        {
          seconds = new DerInteger(accuracySeconds);
        }

        DerInteger millis = null;
        if (accuracyMillis > 0)
        {
          millis = new DerInteger(accuracyMillis);
        }

        DerInteger micros = null;
        if (accuracyMicros > 0)
        {
          micros = new DerInteger(accuracyMicros);
        }

        accuracy = new Accuracy(seconds, millis, micros);
      }

      DerBoolean derOrdering = null;
      if (ordering)
      {
        derOrdering = DerBoolean.GetInstance(ordering);
      }

      DerInteger nonce = null;
      if (request.Nonce != null)
      {
        nonce = new DerInteger(request.Nonce);
      }

      DerObjectIdentifier tsaPolicy = new DerObjectIdentifier(tsaPolicyOID);
      if (request.ReqPolicy != null)
      {
        tsaPolicy = new DerObjectIdentifier(request.ReqPolicy);
      }

      TstInfo tstInfo = new TstInfo(tsaPolicy, messageImprint,
        new DerInteger(serialNumber), new DerGeneralizedTime(genTime), accuracy,
        derOrdering, nonce, tsa, request.Extensions);

      try
      {
        CmsSignedDataGenerator signedDataGenerator = new CmsSignedDataGenerator();

        byte[] derEncodedTstInfo = tstInfo.GetDerEncoded();

        if (request.CertReq)
        {
          signedDataGenerator.AddCertificates(x509Certs);
        }

        signedDataGenerator.AddCrls(x509Crls);
        signedDataGenerator.AddSigner(key, cert, digestOID, signedAttr, unsignedAttr);

        CmsSignedData signedData = signedDataGenerator.Generate(
          PkcsObjectIdentifiers.IdCTTstInfo.Id,
          new CmsProcessableByteArray(derEncodedTstInfo),
          true);

        return new TimeStampToken(signedData);
      }
      catch (CmsException cmsEx)
      {
        throw new TspException("Error generating time-stamp token", cmsEx);
      }
      catch (IOException e)
      {
        throw new TspException("Exception encoding info", e);
      }
      catch (X509StoreException e)
      {
        throw new TspException("Exception handling CertStore", e);
      }
//      catch (InvalidAlgorithmParameterException e)
//      {
//        throw new TspException("Exception handling CertStore CRLs", e);
//      }
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.