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

namespace Org.BouncyCastle.Asn1.Cms{
  public class AuthEnvelopedData
    : Asn1Encodable
  {
    private DerInteger        version;
    private OriginatorInfo      originatorInfo;
    private Asn1Set          recipientInfos;
    private EncryptedContentInfo  authEncryptedContentInfo;
    private Asn1Set          authAttrs;
    private Asn1OctetString      mac;
    private Asn1Set          unauthAttrs;

    public AuthEnvelopedData(
      OriginatorInfo      originatorInfo,
      Asn1Set          recipientInfos,
      EncryptedContentInfo  authEncryptedContentInfo,
      Asn1Set          authAttrs,
      Asn1OctetString      mac,
      Asn1Set          unauthAttrs)
    {
      // "It MUST be set to 0."
      this.version = new DerInteger(0);

      this.originatorInfo = originatorInfo;

      // TODO
      // "There MUST be at least one element in the collection."
      this.recipientInfos = recipientInfos;

      this.authEncryptedContentInfo = authEncryptedContentInfo;

      // TODO
      // "The authAttrs MUST be present if the content type carried in
      // EncryptedContentInfo is not id-data."
      this.authAttrs = authAttrs;

      this.mac = mac;

      this.unauthAttrs = unauthAttrs;
      }

    private AuthEnvelopedData(
      Asn1Sequence  seq)
    {
      int index = 0;

      // TODO
      // "It MUST be set to 0."
      Asn1Object tmp = seq[index++].ToAsn1Object();
      version = (DerInteger)tmp;

      tmp = seq[index++].ToAsn1Object();
      if (tmp is Asn1TaggedObject)
      {
        originatorInfo = OriginatorInfo.GetInstance((Asn1TaggedObject)tmp, false);
        tmp = seq[index++].ToAsn1Object();
      }

      // TODO
      // "There MUST be at least one element in the collection."
      recipientInfos = Asn1Set.GetInstance(tmp);

      tmp = seq[index++].ToAsn1Object();
      authEncryptedContentInfo = EncryptedContentInfo.GetInstance(tmp);

      tmp = seq[index++].ToAsn1Object();
      if (tmp is Asn1TaggedObject)
      {
        authAttrs = Asn1Set.GetInstance((Asn1TaggedObject)tmp, false);
        tmp = seq[index++].ToAsn1Object();
      }
      else
      {
        // TODO
        // "The authAttrs MUST be present if the content type carried in
        // EncryptedContentInfo is not id-data."
      }

      mac = Asn1OctetString.GetInstance(tmp);

      if (seq.Count > index)
      {
        tmp = seq[index++].ToAsn1Object();
        unauthAttrs = Asn1Set.GetInstance((Asn1TaggedObject)tmp, false);
      }
    }

    /**
     * return an AuthEnvelopedData object from a tagged object.
     *
     * @param obj      the tagged object holding the object we want.
     * @param isExplicit true if the object is meant to be explicitly
     *                 tagged false otherwise.
     * @throws ArgumentException if the object held by the
     *                                  tagged object cannot be converted.
     */
    public static AuthEnvelopedData GetInstance(
      Asn1TaggedObject  obj,
      bool        isExplicit)
    {
      return GetInstance(Asn1Sequence.GetInstance(obj, isExplicit));
    }

    /**
     * return an AuthEnvelopedData object from the given object.
     *
     * @param obj the object we want converted.
     * @throws ArgumentException if the object cannot be converted.
     */
    public static AuthEnvelopedData GetInstance(
      object  obj)
    {
      if (obj == null || obj is AuthEnvelopedData)
      {
        return (AuthEnvelopedData)obj;
      }

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

      throw new ArgumentException("Invalid AuthEnvelopedData: " + obj.GetType().Name);
    }

    public DerInteger Version
    {
      get { return version; }
    }

    public OriginatorInfo OriginatorInfo
    {
      get { return originatorInfo; }
    }

    public Asn1Set RecipientInfos
    {
      get { return recipientInfos; }
    }

    public EncryptedContentInfo AuthEncryptedContentInfo
    {
      get { return authEncryptedContentInfo; }
    }

    public Asn1Set AuthAttrs
    {
      get { return authAttrs; }
    }

    public Asn1OctetString Mac
    {
      get { return mac; }
    }

    public Asn1Set UnauthAttrs
    {
      get { return unauthAttrs; }
    }

    /**
     * Produce an object suitable for an Asn1OutputStream.
     * <pre>
     * AuthEnvelopedData ::= SEQUENCE {
     *   version CMSVersion,
     *   originatorInfo [0] IMPLICIT OriginatorInfo OPTIONAL,
     *   recipientInfos RecipientInfos,
     *   authEncryptedContentInfo EncryptedContentInfo,
     *   authAttrs [1] IMPLICIT AuthAttributes OPTIONAL,
     *   mac MessageAuthenticationCode,
     *   unauthAttrs [2] IMPLICIT UnauthAttributes OPTIONAL }
     * </pre>
     */
      public override Asn1Object ToAsn1Object()
    {
      Asn1EncodableVector v = new Asn1EncodableVector(version);

      if (originatorInfo != null)
      {
        v.Add(new DerTaggedObject(false, 0, originatorInfo));
      }
      
      v.Add(recipientInfos);
      v.Add(authEncryptedContentInfo);
      
      // "authAttrs optionally contains the authenticated attributes."
      if (authAttrs != null)
      {
        // "AuthAttributes MUST be DER encoded, even if the rest of the
        // AuthEnvelopedData structure is BER encoded."
        v.Add(new DerTaggedObject(false, 1, authAttrs));
      }
      
      v.Add(mac);
      
      // "unauthAttrs optionally contains the unauthenticated attributes."
      if (unauthAttrs != null)
      {
        v.Add(new DerTaggedObject(false, 2, unauthAttrs));
      }
      
      return new BerSequence(v);
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.