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

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_base.h,v 1.26 2003/01/06 19:35:51 chris Exp $
  48.  *
  49.  */                           
  50. #include <openssl/err.h>
  51. #include <iostream>
  52. #include "exception.h"
  53. #ifndef PKI_BASE_H
  54. #define PKI_BASE_H
  55. struct PASS_INFO {
  56. string *title;
  57. string *description;
  58. };
  59. class pki_base
  60. {
  61.     protected:
  62. string desc;
  63. string error;
  64. string className;
  65. void *pointer; 
  66. void openssl_error(const string myerr = "");
  67. void fopen_error(const string fname);
  68. bool ign_openssl_error();
  69. int intToData(unsigned char **p, const int val);
  70. int intFromData(unsigned char **p);
  71. int boolToData(unsigned char **p, const bool val);
  72. bool boolFromData(unsigned char **p);
  73. int stringToData(unsigned char **p, const string val);
  74. string stringFromData(unsigned char **p);
  75.     public:
  76. pki_base(const string d);
  77. pki_base();
  78. virtual void fromData(unsigned char *p, int size)
  79. { CERR("VIRTUAL FUNCTION CALLED: fromData"); };
  80. virtual unsigned char *toData(int *size)
  81. { CERR("VIRTUAL FUNCTION CALLED: toData"); return NULL;};
  82. virtual bool compare(pki_base *ref)
  83. { CERR("VIRTUAL FUNCTION CALLED: compare"); return false;};
  84. virtual ~pki_base();
  85.         string getDescription();
  86.         void setDescription(const string d );
  87. string getError();
  88. void setPointer(void *ptr) { pointer = ptr; }
  89. void delPointer() { pointer = NULL; }
  90. void *getPointer() { return pointer; }
  91. string getClassName();
  92. };
  93. #endif