pki_x509.h
上传用户:stc1860
上传日期:2007-01-12
资源大小:234k
文件大小:4k
源码类别:

CA认证

开发平台:

MultiPlatform

  1. /*
  2.  * Copyright (C) 2001 Christian Hohnstaedt.
  3.  *
  4.  *  All rights reserved.
  5.  *
  6.  *
  7.  *  Redistribution and use in source and binary forms, with or without 
  8.  *  modification, are permitted provided that the following conditions are met:
  9.  *
  10.  *  - Redistributions of source code must retain the above copyright notice,
  11.  *    this list of conditions and the following disclaimer.
  12.  *  - Redistributions in binary form must reproduce the above copyright notice,
  13.  *    this list of conditions and the following disclaimer in the documentation
  14.  *    and/or other materials provided with the distribution.
  15.  *  - Neither the name of the author nor the names of its contributors may be 
  16.  *    used to endorse or promote products derived from this software without
  17.  *    specific prior written permission.
  18.  *
  19.  *
  20.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  21.  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  22.  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  23.  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  24.  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  27.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  28.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  29.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  30.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31.  *
  32.  *
  33.  * This program links to software with different licenses from:
  34.  *
  35.  * http://www.openssl.org which includes cryptographic software
  36.  *  written by Eric Young (eay@cryptsoft.com)"
  37.  *
  38.  * http://www.sleepycat.com
  39.  *
  40.  * http://www.trolltech.com
  41.  * 
  42.  *
  43.  *
  44.  * http://www.hohnstaedt.de/xca
  45.  * email: christian@hohnstaedt.de
  46.  *
  47.  * $Id: pki_x509.h,v 1.32 2003/01/06 19:35:51 chris Exp $
  48.  *
  49.  */                           
  50. #include <stdio.h>
  51. #include <openssl/x509.h>
  52. #include <openssl/x509v3.h>
  53. #include <openssl/pem.h>
  54. #include "pki_key.h"
  55. #include "pki_x509req.h"
  56. #ifndef PKI_X509_H
  57. #define PKI_X509_H
  58. class pki_x509 : public pki_base
  59. {
  60. friend class pki_crl;
  61. private:
  62.    pki_x509 *psigner;
  63.    pki_key *pkey;
  64.            X509V3_CTX ext_ctx;
  65.    ASN1_TIME *revoked, *lastCrl;
  66.    int trust;
  67.    int efftrust;
  68.    int caSerial;
  69.    int crlDays;
  70.    string caTemplate;
  71.    X509 *cert;
  72.    void init();
  73. public:
  74.    pki_x509(string d, pki_key *clientKey, pki_x509req *req, pki_x509 *signer, int days, int serial);
  75.    pki_x509(X509 *c);
  76.    pki_x509(const pki_x509 *crt);
  77.    pki_x509();
  78.    pki_x509(const string fname);
  79.    ~pki_x509();
  80.    virtual void fromData(unsigned char *p, int size);
  81.    virtual unsigned char *toData(int *size);
  82.    virtual bool compare(pki_base *refcert);
  83.    bool canSign();
  84.    string getDNs(int nid);
  85.    string getDNi(int nid);
  86.    void writeCert(const string fname, bool PEM, bool append = false);
  87.    bool verify(pki_x509 *signer);
  88.    pki_key *getKey();
  89.    pki_key *getPubKey(); // will be created temporarily and must be freed
  90.    void delKey();
  91.    bool setKey(pki_key *key);
  92.    string notAfter();
  93.    string notBefore();
  94.    string revokedAt();
  95.    string asn1TimeToString(ASN1_TIME *a);
  96.    pki_x509 *getSigner();
  97.    void delSigner();
  98.    string fingerprint(const EVP_MD *digest);
  99.    string printV3ext();
  100.    string getSerial();
  101.    int checkDate();
  102.    void addV3ext(int nid, string exttext);
  103.    void sign(pki_key *signkey);
  104.    X509 *getCert(){ return cert;}
  105.    int getTrust();
  106.    void setTrust(int t);
  107.    int getEffTrust();
  108.    void setEffTrust(int t);
  109.    void setRevoked(bool rev);
  110.    bool isRevoked();
  111.    int calcEffTrust();
  112.    int getIncCaSerial();
  113.    int getCaSerial();
  114.    void setCaSerial(int s);
  115.    void setTemplate(string s);
  116.    string getTemplate();
  117.    void setCrlDays(int s);
  118.    int getCrlDays();
  119.    void setLastCrl(ASN1_TIME *time);
  120.    int resetTimes(pki_x509 *signer);
  121.    bool hasSubAltName();
  122.    bool cmpIssuerAndSerial(pki_x509 *refcert);
  123.    void setDates(int days);
  124.    void setSerial(int serial);
  125. };
  126. #endif