PgpV3SignatureGenerator.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 » PgpV3SignatureGenerator.cs
using System;

using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Parameters;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Security;
using Org.BouncyCastle.Utilities.Date;

namespace Org.BouncyCastle.Bcpg.OpenPgp{
  /// <remarks>Generator for old style PGP V3 Signatures.</remarks>
  // TODO Should be able to implement ISigner?
  public class PgpV3SignatureGenerator
    {
        private PublicKeyAlgorithmTag keyAlgorithm;
        private HashAlgorithmTag hashAlgorithm;
        private PgpPrivateKey privKey;
        private ISigner sig;
        private IDigest    dig;
        private int signatureType;
        private byte lastb;

    /// <summary>Create a generator for the passed in keyAlgorithm and hashAlgorithm codes.</summary>
        public PgpV3SignatureGenerator(
            PublicKeyAlgorithmTag  keyAlgorithm,
            HashAlgorithmTag    hashAlgorithm)
        {
            this.keyAlgorithm = keyAlgorithm;
            this.hashAlgorithm = hashAlgorithm;

            dig = DigestUtilities.GetDigest(PgpUtilities.GetDigestName(hashAlgorithm));
            sig = SignerUtilities.GetSigner(PgpUtilities.GetSignatureName(keyAlgorithm, hashAlgorithm));
        }

    /// <summary>Initialise the generator for signing.</summary>
    public void InitSign(
      int        sigType,
      PgpPrivateKey  key)
    {
      InitSign(sigType, key, null);
    }

    /// <summary>Initialise the generator for signing.</summary>
        public void InitSign(
            int        sigType,
            PgpPrivateKey  key,
      SecureRandom  random)
        {
            this.privKey = key;
            this.signatureType = sigType;

      try
            {
        ICipherParameters cp = key.Key;
        if (random != null)
        {
          cp = new ParametersWithRandom(key.Key, random);
        }

        sig.Init(true, cp);
            }
            catch (InvalidKeyException e)
            {
                throw new PgpException("invalid key.", e);
            }

      dig.Reset();
            lastb = 0;
        }

    public void Update(
            byte b)
        {
            if (signatureType == PgpSignature.CanonicalTextDocument)
            {
        doCanonicalUpdateByte(b);
            }
            else
            {
        doUpdateByte(b);
            }
        }

    private void doCanonicalUpdateByte(
      byte b)
    {
      if (b == '\r')
      {
        doUpdateCRLF();
      }
      else if (b == '\n')
      {
        if (lastb != '\r')
        {
          doUpdateCRLF();
        }
      }
      else
      {
        doUpdateByte(b);
      }

      lastb = b;
    }

    private void doUpdateCRLF()
    {
      doUpdateByte((byte)'\r');
      doUpdateByte((byte)'\n');
    }

    private void doUpdateByte(
      byte b)
    {
      sig.Update(b);
      dig.Update(b);
    }

    public void Update(
            byte[] b)
        {
            if (signatureType == PgpSignature.CanonicalTextDocument)
            {
                for (int i = 0; i != b.Length; i++)
                {
                    doCanonicalUpdateByte(b[i]);
                }
            }
            else
            {
                sig.BlockUpdate(b, 0, b.Length);
                dig.BlockUpdate(b, 0, b.Length);
            }
        }

    public void Update(
            byte[]  b,
            int    off,
            int    len)
        {
            if (signatureType == PgpSignature.CanonicalTextDocument)
            {
                int finish = off + len;

        for (int i = off; i != finish; i++)
                {
                    doCanonicalUpdateByte(b[i]);
                }
            }
            else
            {
                sig.BlockUpdate(b, off, len);
                dig.BlockUpdate(b, off, len);
            }
        }

    /// <summary>Return the one pass header associated with the current signature.</summary>
        public PgpOnePassSignature GenerateOnePassVersion(
            bool isNested)
        {
            return new PgpOnePassSignature(
        new OnePassSignaturePacket(signatureType, hashAlgorithm, keyAlgorithm, privKey.KeyId, isNested));
        }

    /// <summary>Return a V3 signature object containing the current signature state.</summary>
        public PgpSignature Generate()
        {
            long creationTime = DateTimeUtilities.CurrentUnixMs() / 1000L;

      byte[] hData = new byte[]
      {
        (byte) signatureType,
        (byte)(creationTime >> 24),
        (byte)(creationTime >> 16),
        (byte)(creationTime >> 8),
        (byte) creationTime
      };

      sig.BlockUpdate(hData, 0, hData.Length);
            dig.BlockUpdate(hData, 0, hData.Length);

      byte[] sigBytes = sig.GenerateSignature();
      byte[] digest = DigestUtilities.DoFinal(dig);
      byte[] fingerPrint = new byte[]{ digest[0], digest[1] };

      // an RSA signature
      bool isRsa = keyAlgorithm == PublicKeyAlgorithmTag.RsaSign
                || keyAlgorithm == PublicKeyAlgorithmTag.RsaGeneral;

      MPInteger[] sigValues = isRsa
        ?  PgpUtilities.RsaSigToMpi(sigBytes)
        :  PgpUtilities.DsaSigToMpi(sigBytes);

      return new PgpSignature(
        new SignaturePacket(3, signatureType, privKey.KeyId, keyAlgorithm,
          hashAlgorithm, creationTime * 1000L, fingerPrint, sigValues));
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.