⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 siprivat.h

📁 转化为DIB位图再显示出来的dicom文件C++代码
💻 H
字号:
/* * *  Copyright (C) 1998-2005, OFFIS * *  This software and supporting documentation were developed by * *    Kuratorium OFFIS e.V. *    Healthcare Information and Communication Systems *    Escherweg 2 *    D-26121 Oldenburg, Germany * *  THIS SOFTWARE IS MADE AVAILABLE,  AS IS,  AND OFFIS MAKES NO  WARRANTY *  REGARDING  THE  SOFTWARE,  ITS  PERFORMANCE,  ITS  MERCHANTABILITY  OR *  FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER DISEASES  OR *  ITS CONFORMITY TO ANY SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND *  PERFORMANCE OF THE SOFTWARE IS WITH THE USER. * *  Module: dcmsign * *  Author: Norbert Loxen, Marco Eichelberg * *  Purpose: *    classes: SiPrivateKey * *  Last Update:      $Author: meichel $ *  Update Date:      $Date: 2005/12/08 16:04:41 $ *  CVS/RCS Revision: $Revision: 1.5 $ *  Status:           $State: Exp $ * *  CVS/RCS Log at end of file * */#ifndef SIPRIVAT_H#define SIPRIVAT_H#include "dcmtk/config/osconfig.h"#include "dcmtk/dcmsign/sitypes.h"#ifdef WITH_OPENSSL#include "dcmtk/ofstd/ofstring.h"class SiAlgorithm;class SiCertificate;struct evp_pkey_st;typedef struct evp_pkey_st EVP_PKEY;/** a class representing a private key. */class SiPrivateKey{     public:  /// default constructor  SiPrivateKey();    ///destructor  virtual ~SiPrivateKey();  /** sets the password string to be used when loading an   *  encrypted private key file in PEM format (ASN.1/DER encoded files are never encrypted).   *  Must be called prior to loadPrivateKey() in order to be effective.   *  @param thePasswd password string, may be "" or NULL in which case an empty   *    password is assumed.   */  void setPrivateKeyPasswd(const char *thePasswd);  /** sets the password string to be used when loading an   *  encrypted private key file to be read from the console stdin.   */  void setPrivateKeyPasswdFromConsole();  /** loads a private key from file. If the private key is in encrypted PEM   *  format, the password is either read from console (default) or taken   *  from an internal setting created with setPrivateKeyPasswd().   *  @param filename file name of key   *  @param filetype file format: X509_FILETYPE_PEM or X509_FILETYPE_ASN1   *  @return status code   */  OFCondition loadPrivateKey(const char *filename, int filetype);  /** returns the type of public key stored in this certificate   */  E_KeyType getKeyType() const;    /** creates an SiAlgorithm object for the private key contained in this certificate.   *  If no key is loaded or operation fails, returns NULL.   *  New SiAlgorithm object must be deleted by caller.   *  @return pointer to new SiAlgorithm object   */  SiAlgorithm *createAlgorithmForPrivateKey();  /** checks if the private key and the certificate set using setPrivateKeyFile()   *  and setCertificateFile() match, i.e. if they establish a private/public key pair.   *  @return OFTrue if private key and certificate match, OFFalse otherwise.   */    OFBool matchesCertificate(SiCertificate& cert);private:  /// private undefined copy constructor  SiPrivateKey(SiPrivateKey& arg);  /// private undefined copy assignment operator  SiPrivateKey& operator=(SiPrivateKey& arg);  /// contains the password for the private key if set on command line  OFString privateKeyPasswd;  /// true if the privateKeyPasswd contains the password, false otherwise.  OFBool usePrivateKeyPassword;  /// the private key managed by this object, may be NULL if not loaded yet  EVP_PKEY* pkey;};#endif#endif/* *  $Log: siprivat.h,v $ *  Revision 1.5  2005/12/08 16:04:41  meichel *  Changed include path schema for all DCMTK header files * *  Revision 1.4  2003/06/04 14:21:03  meichel *  Simplified include structure to avoid preprocessor limitation *    (max 32 #if levels) on MSVC5 with STL. * *  Revision 1.3  2001/09/26 14:30:21  meichel *  Adapted dcmsign to class OFCondition * *  Revision 1.2  2001/06/01 15:50:50  meichel *  Updated copyright header * *  Revision 1.1  2000/11/07 16:48:57  meichel *  Initial release of dcmsign module for DICOM Digital Signatures * * */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -