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

using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.Ocsp;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Security;
using Org.BouncyCastle.Security.Certificates;
using Org.BouncyCastle.X509;
using Org.BouncyCastle.X509.Store;

namespace Org.BouncyCastle.Ocsp{
  /// <remarks>
  /// <code>
  /// BasicOcspResponse ::= SEQUENCE {
  ///    tbsResponseData    ResponseData,
  ///    signatureAlgorithm  AlgorithmIdentifier,
  ///    signature      BIT STRING,
  ///    certs        [0] EXPLICIT SEQUENCE OF Certificate OPTIONAL
  /// }
  /// </code>
  /// </remarks>
  public class BasicOcspResp
    : X509ExtensionBase
  {
    private readonly BasicOcspResponse  resp;
    private readonly ResponseData    data;
//    private readonly X509Certificate[]  chain;

    public BasicOcspResp(
      BasicOcspResponse resp)
    {
      this.resp = resp;
      this.data = resp.TbsResponseData;
    }

    /// <returns>The DER encoding of the tbsResponseData field.</returns>
    /// <exception cref="OcspException">In the event of an encoding error.</exception>
    public byte[] GetTbsResponseData()
    {
      try
      {
        return data.GetDerEncoded();
      }
      catch (IOException e)
      {
        throw new OcspException("problem encoding tbsResponseData", e);
      }
    }

    public int Version
    {
      get { return data.Version.Value.IntValue + 1; }
    }

    public RespID ResponderId
    {
      get { return new RespID(data.ResponderID); }
    }

    public DateTime ProducedAt
    {
      get { return data.ProducedAt.ToDateTime(); }
    }

    public SingleResp[] Responses
    {
      get
      {
        Asn1Sequence s = data.Responses;
        SingleResp[] rs = new SingleResp[s.Count];

        for (int i = 0; i != rs.Length; i++)
        {
          rs[i] = new SingleResp(SingleResponse.GetInstance(s[i]));
        }

        return rs;
      }
    }

    public X509Extensions ResponseExtensions
    {
      get { return data.ResponseExtensions; }
    }

    protected override X509Extensions GetX509Extensions()
    {
      return ResponseExtensions;
    }

    public string SignatureAlgName
    {
      get { return OcspUtilities.GetAlgorithmName(resp.SignatureAlgorithm.ObjectID); }
    }

    public string SignatureAlgOid
    {
      get { return resp.SignatureAlgorithm.ObjectID.Id; }
    }

    [Obsolete("RespData class is no longer required as all functionality is available on this class")]
    public RespData GetResponseData()
    {
      return new RespData(data);
    }

    public byte[] GetSignature()
    {
      return resp.Signature.GetBytes();
    }

    private ArrayList GetCertList()
    {
      // load the certificates and revocation lists if we have any

      ArrayList certs = new ArrayList();
      Asn1Sequence s = resp.Certs;

      if (s != null)
      {
        foreach (Asn1Encodable ae in s)
        {
          try
          {
            certs.Add(new X509CertificateParser().ReadCertificate(ae.GetEncoded()));
          }
          catch (IOException ex)
          {
            throw new OcspException("can't re-encode certificate!", ex);
          }
          catch (CertificateException ex)
          {
            throw new OcspException("can't re-encode certificate!", ex);
          }
        }
      }

      return certs;
    }

    public X509Certificate[] GetCerts()
    {
      ArrayList certs = GetCertList();

      return (X509Certificate[]) certs.ToArray(typeof(X509Certificate));
    }

    /// <returns>The certificates, if any, associated with the response.</returns>
    /// <exception cref="OcspException">In the event of an encoding error.</exception>
    public IX509Store GetCertificates(
      string type)
    {
      try
      {
        return X509StoreFactory.Create(
          "Certificate/" + type,
          new X509CollectionStoreParameters(this.GetCertList()));
      }
      catch (Exception e)
      {
        throw new OcspException("can't setup the CertStore", e);
      }
    }

    /// <summary>
    /// Verify the signature against the tbsResponseData object we contain.
    /// </summary>
    public bool Verify(
      AsymmetricKeyParameter publicKey)
    {
      try
      {
        ISigner signature = SignerUtilities.GetSigner(this.SignatureAlgName);
        signature.Init(false, publicKey);
        byte[] bs = data.GetDerEncoded();
        signature.BlockUpdate(bs, 0, bs.Length);

        return signature.VerifySignature(this.GetSignature());
      }
      catch (Exception e)
      {
        throw new OcspException("exception processing sig: " + e, e);
      }
    }

    /// <returns>The ASN.1 encoded representation of this object.</returns>
    public byte[] GetEncoded()
    {
      return resp.GetEncoded();
    }

    public override bool Equals(
      object obj)
    {
      if (obj == this)
        return true;

      BasicOcspResp other = obj as BasicOcspResp;

      if (other == null)
        return false;

      return resp.Equals(other.resp);
    }

    public override int GetHashCode()
    {
      return resp.GetHashCode();
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.