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

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 "@(#)X509Cert.h 1.12 96/01/29 Sun Microsystems"
  31. #ifndef CERT_H
  32. #define CERT_H
  33. #include "Time.h"
  34. #include "Bigint.h"
  35. #include "Bstream.h"
  36. #include "asn1_der.h"
  37. #include "ObjId.h"
  38. #include "Name.h"
  39. /*
  40.  * Abstract Data Type for
  41.  * an X.509/PEM style certificate
  42.  */
  43. enum VerifyResult {VALID,  // Valid X509Certificate
  44.    INVALID_SIG,         // Signature invalid
  45.    INVALID_REVOKED,  // X509Certificate revoked
  46.    INVALID_NOTBEFORE,  // X509Certificate not yet valid
  47.    INVALID_EXPIRED}; // X509Certificate validity expired
  48. struct AlgId {
  49. ObjId algid;
  50. Bstream params;
  51. AlgId& operator =(const AlgId&);
  52. };
  53. struct Key {
  54. AlgId keytype;
  55. Bstream key;
  56. };
  57. typedef Key PubKey;
  58. typedef Key  PrivKey;
  59. class X509Cert {
  60. Bigint serialnum;
  61. AlgId sigalg;
  62. Name issuer;
  63. PCTime notbefore;
  64. PCTime notafter;
  65. Name subject;
  66. PubKey pubkey;
  67. Bstream certdata; // Entire contents of encoded cert
  68. Bstream certsigdata; // Part over which sig. is computed
  69. Bstream sigdata; // The encrypted hash, i.e sig value
  70. public:
  71.  // Constructors 
  72. X509Cert();
  73. ~X509Cert();
  74. X509Cert(const X509Cert& );
  75. X509Cert& operator =(const X509Cert &);
  76. X509Cert(const Bigint&, const AlgId&, const Name&,
  77.      const PCTime& , const PCTime&, const Name&, const PubKey&);
  78. X509Cert(const Bigint&, const AlgId&, const Name&,
  79.      const PCTime& , const PCTime&, const Name&, const PubKey&,
  80.      const Bstream&, const Bstream&, const Bstream&);
  81. // Member functions and operators
  82. friend Boolean operator ==(const X509Cert&, const X509Cert&);
  83. VerifyResult verify(const PubKey& ) const;
  84. Bstream sign_and_encode(const Bstream&);
  85. Bigint getserialnum() const;
  86. Name getsubject() const;
  87. Name getissuer() const;
  88. AlgId getsigalgid() const;
  89. PCTime getnotbefore() const;
  90. PCTime getnotafter() const;
  91. PubKey getpubkey() const;
  92. Bstream getcertdata() const;
  93. void print();
  94. };
  95. extern int asn1_der_decode_cert(Bstream&, X509Cert&);
  96. extern int asn1_der_decode_algid(Bstream&, AlgId&);
  97. extern Bstream asn1_der_encode_certreq(const char *, const Bstream&,
  98. const Bstream&);
  99. extern int asn1_der_decode_dh_params(Bstream, Bigint&, Bigint&);
  100. #endif CERT_H