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

using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.Cms;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Generators;
using Org.BouncyCastle.Crypto.IO;
using Org.BouncyCastle.Crypto.Parameters;
using Org.BouncyCastle.Security;
using Org.BouncyCastle.Utilities.IO;

namespace Org.BouncyCastle.Cms{
  /**
  * General class for generating a CMS authenticated-data message stream.
  * <p>
  * A simple example of usage.
  * <pre>
  *      CMSAuthenticatedDataStreamGenerator edGen = new CMSAuthenticatedDataStreamGenerator();
  *
  *      edGen.addKeyTransRecipient(cert);
  *
  *      ByteArrayOutputStream  bOut = new ByteArrayOutputStream();
  *
  *      OutputStream out = edGen.open(
  *                              bOut, CMSAuthenticatedDataGenerator.AES128_CBC, "BC");*
  *      out.write(data);
  *
  *      out.close();
  * </pre>
  * </p>
  */
  public class CmsAuthenticatedDataStreamGenerator
    : CmsAuthenticatedGenerator
  {
    // TODO Add support
//    private object              _originatorInfo = null;
//    private object              _unprotectedAttributes = null;
    private int                 _bufferSize;
    private bool                _berEncodeRecipientSet;

    /**
    * base constructor
    */
    public CmsAuthenticatedDataStreamGenerator()
    {
    }

    /**
    * constructor allowing specific source of randomness
    * @param rand instance of SecureRandom to use
    */
    public CmsAuthenticatedDataStreamGenerator(
      SecureRandom rand)
      : base(rand)
    {
    }

    /**
    * Set the underlying string size for encapsulated data
    *
    * @param bufferSize length of octet strings to buffer the data.
    */
    public void SetBufferSize(
      int bufferSize)
    {
      _bufferSize = bufferSize;
    }

    /**
    * Use a BER Set to store the recipient information
    */
    public void SetBerEncodeRecipients(
      bool berEncodeRecipientSet)
    {
      _berEncodeRecipientSet = berEncodeRecipientSet;
    }

    /**
    * generate an enveloped object that contains an CMS Enveloped Data
    * object using the given provider and the passed in key generator.
    * @throws java.io.IOException
    */
    private Stream Open(
      Stream        outStr,
      string        macOid,
      CipherKeyGenerator  keyGen)
    {
      // FIXME Will this work for macs?
      byte[] encKeyBytes = keyGen.GenerateKey();
      KeyParameter encKey = ParameterUtilities.CreateKeyParameter(macOid, encKeyBytes);

      Asn1Encodable asn1Params = GenerateAsn1Parameters(macOid, encKeyBytes);

      ICipherParameters cipherParameters;
      AlgorithmIdentifier macAlgId = GetAlgorithmIdentifier(
        macOid, encKey, asn1Params, out cipherParameters);

      Asn1EncodableVector recipientInfos = new Asn1EncodableVector();

      foreach (RecipientInfoGenerator rig in recipientInfoGenerators)
      {
        try
        {
          recipientInfos.Add(rig.Generate(encKey, rand));
        }
        catch (InvalidKeyException e)
        {
          throw new CmsException("key inappropriate for algorithm.", e);
        }
        catch (GeneralSecurityException e)
        {
          throw new CmsException("error making encrypted content.", e);
        }
      }

      // FIXME Only passing key at the moment
//      return Open(outStr, macAlgId, cipherParameters, recipientInfos);
      return Open(outStr, macAlgId, encKey, recipientInfos);
    }

    protected Stream Open(
      Stream              outStr,
      AlgorithmIdentifier    macAlgId,
      ICipherParameters    cipherParameters,
      Asn1EncodableVector    recipientInfos)
    {
      try
      {
        //
        // ContentInfo
        //
        BerSequenceGenerator cGen = new BerSequenceGenerator(outStr);

        cGen.AddObject(CmsObjectIdentifiers.AuthenticatedData);

        //
        // Authenticated Data
        //
        BerSequenceGenerator authGen = new BerSequenceGenerator(
          cGen.GetRawOutputStream(), 0, true);

        authGen.AddObject(new DerInteger(AuthenticatedData.CalculateVersion(null)));

        Stream authRaw = authGen.GetRawOutputStream();
        Asn1Generator recipGen = _berEncodeRecipientSet
          ?  (Asn1Generator) new BerSetGenerator(authRaw)
          :  new DerSetGenerator(authRaw);

        foreach (Asn1Encodable ae in recipientInfos)
        {
          recipGen.AddObject(ae);
        }

        recipGen.Close();

        authGen.AddObject(macAlgId);

        BerSequenceGenerator eiGen = new BerSequenceGenerator(authRaw);
        eiGen.AddObject(CmsObjectIdentifiers.Data);

        Stream octetOutputStream = CmsUtilities.CreateBerOctetOutputStream(
          eiGen.GetRawOutputStream(), 0, false, _bufferSize);

        IMac mac = MacUtilities.GetMac(macAlgId.ObjectID);
        // TODO Confirm no ParametersWithRandom needed
              mac.Init(cipherParameters);
        MacStream mOut = new MacStream(octetOutputStream, null, mac);
        
        return new CmsAuthenticatedDataOutputStream(mOut, cGen, authGen, eiGen);
      }
      catch (SecurityUtilityException e)
      {
        throw new CmsException("couldn't create cipher.", e);
      }
      catch (InvalidKeyException e)
      {
        throw new CmsException("key invalid in message.", e);
      }
      catch (IOException e)
      {
        throw new CmsException("exception decoding algorithm parameters.", e);
      }
    }

    /**
    * generate an enveloped object that contains an CMS Enveloped Data object
    */
    public Stream Open(
      Stream  outStr,
      string  encryptionOid)
    {
      CipherKeyGenerator keyGen = GeneratorUtilities.GetKeyGenerator(encryptionOid);

      keyGen.Init(new KeyGenerationParameters(rand, keyGen.DefaultStrength));

      return Open(outStr, encryptionOid, keyGen);
    }

    /**
    * generate an enveloped object that contains an CMS Enveloped Data object
    */
    public Stream Open(
      Stream  outStr,
      string  encryptionOid,
      int    keySize)
    {
      CipherKeyGenerator keyGen = GeneratorUtilities.GetKeyGenerator(encryptionOid);

      keyGen.Init(new KeyGenerationParameters(rand, keySize));

      return Open(outStr, encryptionOid, keyGen);
    }

    private class CmsAuthenticatedDataOutputStream
      : BaseOutputStream
    {
      private readonly MacStream        macStream;
      private readonly BerSequenceGenerator  cGen;
      private readonly BerSequenceGenerator  authGen;
      private readonly BerSequenceGenerator  eiGen;

      public CmsAuthenticatedDataOutputStream(
        MacStream        macStream,
        BerSequenceGenerator  cGen,
        BerSequenceGenerator  authGen,
        BerSequenceGenerator  eiGen)
      {
        this.macStream = macStream;
        this.cGen = cGen;
        this.authGen = authGen;
        this.eiGen = eiGen;
      }

      public override void WriteByte(
        byte b)
      {
        macStream.WriteByte(b);
      }

      public override void Write(
        byte[]  bytes,
        int    off,
        int    len)
      {
        macStream.Write(bytes, off, len);
      }

      public override void Close()
      {
        macStream.Close();
        eiGen.Close();

        // [TODO] auth attributes go here           
        byte[] macOctets = MacUtilities.DoFinal(macStream.WriteMac());
        authGen.AddObject(new DerOctetString(macOctets));
        // [TODO] unauth attributes go here

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