pki_key.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_key.h,v 1.24 2003/01/06 19:35:51 chris Exp $
  48.  *
  49.  */                           
  50. #include <iostream>
  51. #include <string>
  52. #include <openssl/rand.h>
  53. #include <openssl/rsa.h>
  54. #include <openssl/bn.h>
  55. #include <openssl/pem.h>
  56. #include <openssl/bio.h>
  57. #include <openssl/evp.h>
  58. #include <openssl/x509.h>
  59. #include <openssl/pkcs12.h>
  60. #include "pki_base.h"
  61. #ifndef PKI_KEY_H
  62. #define PKI_KEY_H
  63. #define MAX_KEY_LENGTH 4096
  64. class pki_key: public pki_base
  65. {
  66.     friend class pki_x509req;
  67.     friend class pki_x509;
  68.     friend class pki_crl;
  69.     protected:
  70. EVP_PKEY *key;
  71. string BN2string(BIGNUM *bn);
  72. int ucount; // usage counter
  73.     public:
  74. static char passwd[40];
  75. /* constructor to generate a key .....
  76.  * d     is the description
  77.  * bits  is the keylength in bits
  78.  * cb    a callback for e.g. a progress bar
  79.  */ 
  80. pki_key(const string d, void (*cb)(int, int,void *),void *prog,int bits,int type = EVP_PKEY_RSA);   
  81. /* constructor to load a key from a file
  82.  * fname    = filename
  83.  * pem_password_cb = password callback function
  84.  */
  85. pki_key(const string fname, pem_password_cb *cb,int type = EVP_PKEY_RSA);
  86. // copy constructor
  87. pki_key::pki_key(const pki_key *pk);
  88. /* destructor */
  89. ~pki_key();
  90. /* constructor from database 
  91.  * p = pointer to data
  92.  * size = size of datastruct
  93.  */
  94. pki_key(const string d, int type=EVP_PKEY_RSA);
  95. pki_key(EVP_PKEY *pkey);
  96. void init();
  97. void fromData(unsigned char *p, int size);
  98. unsigned char *toData(int *size);
  99. bool compare(pki_base *ref);
  100.         string length();
  101.         string modulus();
  102.         string pubEx();
  103.         string privEx();
  104. void writeKey(const string fname, const EVP_CIPHER *enc, 
  105. pem_password_cb *cb, bool PEM);
  106. void writePublic(const string fname, bool PEM);
  107. void writePKCS8(const string fname, pem_password_cb *cb);
  108. bool isPrivKey();
  109. bool isPubKey();
  110. int verify();
  111. int getType();
  112. EVP_PKEY *getKey(){ return key;}
  113. int incUcount();
  114. int decUcount();
  115. int getUcount();
  116. };
  117. #endif