00001 /* 00002 * 00003 * Copyright (C) 1998-2010, OFFIS e.V. 00004 * All rights reserved. See COPYRIGHT file for details. 00005 * 00006 * This software and supporting documentation were developed by 00007 * 00008 * OFFIS e.V. 00009 * R&D Division Health 00010 * Escherweg 2 00011 * D-26121 Oldenburg, Germany 00012 * 00013 * 00014 * Module: dcmsign 00015 * 00016 * Author: Norbert Loxen, Marco Eichelberg 00017 * 00018 * Purpose: 00019 * classes: SiCreatorProfile 00020 * 00021 * Last Update: $Author: joergr $ 00022 * Update Date: $Date: 2010-10-14 13:17:24 $ 00023 * CVS/RCS Revision: $Revision: 1.6 $ 00024 * Status: $State: Exp $ 00025 * 00026 * CVS/RCS Log at end of file 00027 * 00028 */ 00029 00030 #ifndef SICREAPR_H 00031 #define SICREAPR_H 00032 00033 #include "dcmtk/config/osconfig.h" 00034 #include "dcmtk/dcmsign/sibrsapr.h" /* for SiBaseRSAProfile */ 00035 00036 #ifdef WITH_OPENSSL 00037 00040 class SiCreatorProfile: public SiBaseRSAProfile 00041 { 00042 public: 00043 00045 SiCreatorProfile() { } 00046 00048 virtual ~SiCreatorProfile() { } 00049 00055 virtual OFBool attributeRequired(const DcmTagKey& key) const; 00056 00057 }; 00058 00059 #endif 00060 #endif 00061 00062 /* 00063 * $Log: sicreapr.h,v $ 00064 * Revision 1.6 2010-10-14 13:17:24 joergr 00065 * Updated copyright header. Added reference to COPYRIGHT file. 00066 * 00067 * Revision 1.5 2005-12-08 16:04:35 meichel 00068 * Changed include path schema for all DCMTK header files 00069 * 00070 * Revision 1.4 2003/06/04 14:21:03 meichel 00071 * Simplified include structure to avoid preprocessor limitation 00072 * (max 32 #if levels) on MSVC5 with STL. 00073 * 00074 * Revision 1.3 2001/11/16 15:50:50 meichel 00075 * Adapted digital signature code to final text of supplement 41. 00076 * 00077 * Revision 1.2 2001/06/01 15:50:48 meichel 00078 * Updated copyright header 00079 * 00080 * Revision 1.1 2000/11/07 16:48:54 meichel 00081 * Initial release of dcmsign module for DICOM Digital Signatures 00082 * 00083 * 00084 */ 00085