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

namespace Org.BouncyCastle.Asn1.Cmp{
  /**
   * <pre>
   * PKIFailureInfo ::= BIT STRING {
   * badAlg               (0),
   *   -- unrecognized or unsupported Algorithm Identifier
   * badMessageCheck      (1), -- integrity check failed (e.g., signature did not verify)
   * badRequest           (2),
   *   -- transaction not permitted or supported
   * badTime              (3), -- messageTime was not sufficiently close to the system time, as defined by local policy
   * badCertId            (4), -- no certificate could be found matching the provided criteria
   * badDataFormat        (5),
   *   -- the data submitted has the wrong format
   * wrongAuthority       (6), -- the authority indicated in the request is different from the one creating the response token
   * incorrectData        (7), -- the requester's data is incorrect (for notary services)
   * missingTimeStamp     (8), -- when the timestamp is missing but should be there (by policy)
   * badPOP               (9)  -- the proof-of-possession failed
   * timeNotAvailable    (14),
   *   -- the TSA's time source is not available
   * unacceptedPolicy    (15),
   *   -- the requested TSA policy is not supported by the TSA
   * unacceptedExtension (16),
   *   -- the requested extension is not supported by the TSA
   *  addInfoNotAvailable (17)
   *    -- the additional information requested could not be understood
   *    -- or is not available
   *  systemFailure       (25)
   *    -- the request cannot be handled due to system failure
   * </pre>
   */
  public class PkiFailureInfo
    : DerBitString
  {
    public const int BadAlg               = (1 << 7); // unrecognized or unsupported Algorithm Identifier
    public const int BadMessageCheck      = (1 << 6); // integrity check failed (e.g., signature did not verify)
    public const int BadRequest           = (1 << 5);
    public const int BadTime              = (1 << 4); // -- messageTime was not sufficiently close to the system time, as defined by local policy
    public const int BadCertId            = (1 << 3); // no certificate could be found matching the provided criteria
    public const int BadDataFormat        = (1 << 2);
    public const int WrongAuthority       = (1 << 1); // the authority indicated in the request is different from the one creating the response token
    public const int IncorrectData        = 1;        // the requester's data is incorrect (for notary services)
    public const int MissingTimeStamp     = (1 << 15); // when the timestamp is missing but should be there (by policy)
    public const int BadPop               = (1 << 14); // the proof-of-possession failed
    public const int TimeNotAvailable     = (1 << 9); // the TSA's time source is not available
    public const int UnacceptedPolicy     = (1 << 8); // the requested TSA policy is not supported by the TSA
    public const int UnacceptedExtension  = (1 << 23); //the requested extension is not supported by the TSA
    public const int AddInfoNotAvailable  = (1 << 22); //the additional information requested could not be understood or is not available
    public const int SystemFailure        = (1 << 30); //the request cannot be handled due to system failure

    /**
     * Basic constructor.
     */
    public PkiFailureInfo(
      int info)
      :  base(GetBytes(info), GetPadBits(info))
    {
    }

    public PkiFailureInfo(
      DerBitString info)
      :  base(info.GetBytes(), info.PadBits)
    {
    }

    public override string ToString()
    {
      return "PkiFailureInfo: 0x" + this.IntValue.ToString("X");
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.