CRL.h
上传用户:zbbssh
上传日期:2007-01-08
资源大小:196k
文件大小:3k
源码类别:

CA认证

开发平台:

C/C++

  1. /*
  2. ------------------------------------------------------------------
  3.   Copyright
  4.   Sun Microsystems, Inc.
  5.   Copyright (C) 1994, 1995, 1996 Sun Microsystems, Inc.  All Rights
  6.   Reserved.
  7.   Permission is hereby granted, free of charge, to any person
  8.   obtaining a copy of this software and associated documentation
  9.   files (the "Software"), to deal in the Software without
  10.   restriction, including without limitation the rights to use,
  11.   copy, modify, merge, publish, distribute, sublicense, and/or sell
  12.   copies of the Software or derivatives of the Software, and to 
  13.   permit persons to whom the Software or its derivatives is furnished 
  14.   to do so, subject to the following conditions:
  15.   The above copyright notice and this permission notice shall be
  16.   included in all copies or substantial portions of the Software.
  17.   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18.   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  19.   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20.   NONINFRINGEMENT.  IN NO EVENT SHALL SUN MICROSYSTEMS, INC., BE LIABLE
  21.   FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  22.   OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  23.   CONNECTION WITH THE SOFTWARE OR DERIVATES OF THIS SOFTWARE OR 
  24.   THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25.   Except as contained in this notice, the name of Sun Microsystems, Inc.
  26.   shall not be used in advertising or otherwise to promote
  27.   the sale, use or other dealings in this Software or its derivatives 
  28.   without prior written authorization from Sun Microsystems, Inc.
  29. */
  30. #pragma ident "@(#)CRL.h 1.5 96/01/29 Sun Microsystems"
  31. #ifndef RW
  32. #define CRL_H
  33. #endif
  34. #ifndef CRL_H
  35. #define CRL_H
  36. #include "Signed.h"
  37. extern Bstream initial_CRL(const Bstream&, const char*, int);
  38. #ifdef RW
  39. struct CRLentry : public ListElem {
  40. Bigint serialnum;
  41. PCTime revocationdate;
  42. friend Boolean operator ==(const CRLentry&, const CRLentry&);
  43. virtual Boolean isEqual(const RWCollectable* t) const {
  44. return (*this == *(CRLentry *)t);
  45. }
  46. };
  47. #else
  48. #ifdef GLIB
  49. struct CRLentry : public ListElem {
  50. Bigint serialnum;
  51. PCTime revocationdate;
  52. friend Boolean operator ==(const CRLentry&, const CRLentry&);
  53. virtual Boolean isEqual(const RWCollectable* t) const {
  54. return (*this == *(CRLentry *)t);
  55. }
  56. };
  57. #endif
  58. #endif
  59. class CRL : public virtual Signed { // Share base class data with children
  60.  protected:
  61. Slist  revokedlist;
  62. AlgId sigalg;
  63. Name issuer;
  64. PCTime lastUpdate;
  65. PCTime nextUpdate;
  66.  public:
  67. // Constructors & Destructors
  68. CRL();
  69. virtual ~CRL();
  70. CRL(const CRL&);
  71. CRL& operator =(const CRL&);
  72. CRL(const Bstream&); // Implicitly decode a CRL
  73. CRL(const AlgId&, const Name&, const PCTime&, const PCTime&,
  74.     const Slist& );
  75. // Member functions and operators
  76. Bstream encode(); // encode CRL-specific information
  77. virtual void setRevokedList(const PCTime&, const PCTime&, 
  78.     const Slist&); // Change the revokedlist
  79. virtual AlgId getSigAlg() const;
  80. virtual PCTime getLastUpdate() const;
  81. virtual PCTime getNextUpdate() const;
  82. virtual Name getIssuer() const;
  83. virtual Slist getAllRevoked() const;
  84. Boolean  isRevoked(const Bigint &) const;
  85. friend int asn1_der_decode_CRL(Bstream&, CRL&);
  86. void print() const;
  87. };
  88. extern Bstream 
  89. asn1_der_encode_CRL(CRL&, const AlgId&, const Bstream&);
  90. #define CRLS_DIR "crls"
  91. #define CRL_SUFFIX ".crl"
  92. #endif CRL_H