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

using Org.BouncyCastle.Security;
using Org.BouncyCastle.Utilities.Collections;

namespace Org.BouncyCastle.Bcpg.OpenPgp{
  /// <remarks>
  /// Class to hold a single master secret key and its subkeys.
  /// <p>
  /// Often PGP keyring files consist of multiple master keys, if you are trying to process
  /// or construct one of these you should use the <c>PgpSecretKeyRingBundle</c> class.
  /// </p>
  /// </remarks>
  public class PgpSecretKeyRing
    : PgpKeyRing
    {
        private readonly IList keys;
    private readonly IList extraPubKeys;

    internal PgpSecretKeyRing(
      IList keys)
      : this(keys, new ArrayList())
    {
    }

    private PgpSecretKeyRing(
      IList  keys,
      IList  extraPubKeys)
    {
      this.keys = keys;
      this.extraPubKeys = extraPubKeys;
    }

    public PgpSecretKeyRing(
            byte[] encoding)
            : this(new MemoryStream(encoding))
        {
        }

    public PgpSecretKeyRing(
            Stream inputStream)
        {
      this.keys = new ArrayList();
      this.extraPubKeys = new ArrayList();

      BcpgInputStream bcpgInput = BcpgInputStream.Wrap(inputStream);

      PacketTag initialTag = bcpgInput.NextPacketTag();
      if (initialTag != PacketTag.SecretKey && initialTag != PacketTag.SecretSubkey)
            {
                throw new IOException("secret key ring doesn't start with secret key tag: "
          + "tag 0x" + ((int)initialTag).ToString("X"));
            }

      SecretKeyPacket secret = (SecretKeyPacket) bcpgInput.ReadPacket();

      //
            // ignore GPG comment packets if found.
            //
            while (bcpgInput.NextPacketTag() == PacketTag.Experimental2)
            {
                bcpgInput.ReadPacket();
            }

      TrustPacket trust = ReadOptionalTrustPacket(bcpgInput);

      // revocation and direct signatures
      ArrayList keySigs = ReadSignaturesAndTrust(bcpgInput);

      ArrayList ids, idTrusts, idSigs;
      ReadUserIDs(bcpgInput, out ids, out idTrusts, out idSigs);

      keys.Add(new PgpSecretKey(secret, new PgpPublicKey(secret.PublicKeyPacket, trust, keySigs, ids, idTrusts, idSigs)));


      // Read subkeys
      while (bcpgInput.NextPacketTag() == PacketTag.SecretSubkey
        || bcpgInput.NextPacketTag() == PacketTag.PublicSubkey)
            {
        if (bcpgInput.NextPacketTag() == PacketTag.SecretSubkey)
        {
          SecretSubkeyPacket sub = (SecretSubkeyPacket) bcpgInput.ReadPacket();

          //
          // ignore GPG comment packets if found.
          //
          while (bcpgInput.NextPacketTag() == PacketTag.Experimental2)
          {
            bcpgInput.ReadPacket();
          }

          TrustPacket subTrust = ReadOptionalTrustPacket(bcpgInput);
          ArrayList sigList = ReadSignaturesAndTrust(bcpgInput);

          keys.Add(new PgpSecretKey(sub, new PgpPublicKey(sub.PublicKeyPacket, subTrust, sigList)));
        }
        else
        {
          PublicSubkeyPacket sub = (PublicSubkeyPacket) bcpgInput.ReadPacket();

          TrustPacket subTrust = ReadOptionalTrustPacket(bcpgInput);
          ArrayList sigList = ReadSignaturesAndTrust(bcpgInput);

          extraPubKeys.Add(new PgpPublicKey(sub, subTrust, sigList));
        }
            }
        }

    /// <summary>Return the public key for the master key.</summary>
        public PgpPublicKey GetPublicKey()
        {
            return ((PgpSecretKey) keys[0]).PublicKey;
        }

    /// <summary>Return the master private key.</summary>
        public PgpSecretKey GetSecretKey()
        {
            return (PgpSecretKey) keys[0];
        }

    /// <summary>Allows enumeration of the secret keys.</summary>
    /// <returns>An <c>IEnumerable</c> of <c>PgpSecretKey</c> objects.</returns>
    public IEnumerable GetSecretKeys()
        {
            return new EnumerableProxy(keys);
        }

        public PgpSecretKey GetSecretKey(
            long keyId)
        {
      foreach (PgpSecretKey k in keys)
      {
        if (keyId == k.KeyId)
        {
          return k;
        }
      }

      return null;
        }

    /// <summary>
    /// Return an iterator of the public keys in the secret key ring that
    /// have no matching private key. At the moment only personal certificate data
    /// appears in this fashion.
    /// </summary>
    /// <returns>An <c>IEnumerable</c> of unattached, or extra, public keys.</returns>
    public IEnumerable GetExtraPublicKeys()
    {
      return new EnumerableProxy(extraPubKeys);
    }

    public byte[] GetEncoded()
        {
            MemoryStream bOut = new MemoryStream();

            Encode(bOut);

            return bOut.ToArray();
        }

        public void Encode(
            Stream outStr)
        {
      if (outStr == null)
        throw new ArgumentNullException("outStr");

      foreach (PgpSecretKey key in keys)
      {
        key.Encode(outStr);
      }
      foreach (PgpPublicKey extraPubKey in extraPubKeys)
      {
        extraPubKey.Encode(outStr);
      }
        }

    /// <summary>
    /// Replace the public key set on the secret ring with the corresponding key off the public ring.
    /// </summary>
    /// <param name="secretRing">Secret ring to be changed.</param>
    /// <param name="publicRing">Public ring containing the new public key set.</param>
    public static PgpSecretKeyRing ReplacePublicKeys(
      PgpSecretKeyRing  secretRing,
      PgpPublicKeyRing  publicRing)
    {
      IList newList = new ArrayList(secretRing.keys.Count);

      foreach (PgpSecretKey sk in secretRing.keys)
      {
        PgpPublicKey pk = null;
        try
        {
          pk = publicRing.GetPublicKey(sk.KeyId);
        }
        catch (PgpException e)
        {
          throw new InvalidOperationException(e.Message, e);
        }

        newList.Add(PgpSecretKey.ReplacePublicKey(sk, pk));
      }

      return new PgpSecretKeyRing(newList);
    }

    /// <summary>
    /// Return a copy of the passed in secret key ring, with the master key and sub keys encrypted
    /// using a new password and the passed in algorithm.
    /// </summary>
    /// <param name="ring">The <c>PgpSecretKeyRing</c> to be copied.</param>
    /// <param name="oldPassPhrase">The current password for key.</param>
    /// <param name="newPassPhrase">The new password for the key.</param>
    /// <param name="newEncAlgorithm">The algorithm to be used for the encryption.</param>
    /// <param name="rand">Source of randomness.</param>
    public static PgpSecretKeyRing CopyWithNewPassword(
      PgpSecretKeyRing      ring,
      char[]            oldPassPhrase,
      char[]            newPassPhrase,
      SymmetricKeyAlgorithmTag  newEncAlgorithm,
      SecureRandom        rand)
    {
      IList newKeys = new ArrayList(ring.keys.Count);
      foreach (PgpSecretKey secretKey in ring.GetSecretKeys())
      {
        newKeys.Add(PgpSecretKey.CopyWithNewPassword(secretKey, oldPassPhrase, newPassPhrase, newEncAlgorithm, rand));
      }

      return new PgpSecretKeyRing(newKeys, ring.extraPubKeys);
    }

    /// <summary>
    /// Returns a new key ring with the secret key passed in either added or
    /// replacing an existing one with the same key ID.
    /// </summary>
    /// <param name="secRing">The secret key ring to be modified.</param>
    /// <param name="secKey">The secret key to be inserted.</param>
    /// <returns>A new <c>PgpSecretKeyRing</c></returns>
    public static PgpSecretKeyRing InsertSecretKey(
            PgpSecretKeyRing  secRing,
            PgpSecretKey      secKey)
        {
            ArrayList keys = new ArrayList(secRing.keys);
            bool found = false;
      bool masterFound = false;

      for (int i = 0; i != keys.Count; i++)
            {
                PgpSecretKey key = (PgpSecretKey) keys[i];

        if (key.KeyId == secKey.KeyId)
                {
                    found = true;
                    keys[i] = secKey;
                }
        if (key.IsMasterKey)
        {
          masterFound = true;
        }
      }

            if (!found)
            {
        if (secKey.IsMasterKey)
        {
          if (masterFound)
            throw new ArgumentException("cannot add a master key to a ring that already has one");

          keys.Insert(0, secKey);
        }
        else
        {
          keys.Add(secKey);
        }
            }

      return new PgpSecretKeyRing(keys, secRing.extraPubKeys);
    }

    /// <summary>Returns a new key ring with the secret key passed in removed from the key ring.</summary>
    /// <param name="secRing">The secret key ring to be modified.</param>
    /// <param name="secKey">The secret key to be removed.</param>
    /// <returns>A new <c>PgpSecretKeyRing</c>, or null if secKey is not found.</returns>
        public static PgpSecretKeyRing RemoveSecretKey(
            PgpSecretKeyRing  secRing,
            PgpSecretKey      secKey)
        {
            ArrayList keys = new ArrayList(secRing.keys);
            bool found = false;

      for (int i = 0; i < keys.Count; i++)
            {
                PgpSecretKey key = (PgpSecretKey)keys[i];

        if (key.KeyId == secKey.KeyId)
                {
                    found = true;
                    keys.RemoveAt(i);
                }
            }

      return found ? new PgpSecretKeyRing(keys, secRing.extraPubKeys) : null;
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.