/usr/include/dcmtk/dcmsign/dcsignat.h is in libdcmtk2-dev 3.6.0-15.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 | /*
*
* Copyright (C) 1998-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmsign
*
* Author: Marco Eichelberg
*
* Purpose:
* classes: DcmSignature
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:17:24 $
* CVS/RCS Revision: $Revision: 1.4 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef DCMSIGN_H
#define DCMSIGN_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/dcmsign/sitypes.h"
#ifdef WITH_OPENSSL
#include "dcmtk/dcmdata/dcxfer.h" /* for E_TransferSyntax */
#define INCLUDE_CSTDIO
#include "dcmtk/ofstd/ofstdinc.h"
class DcmItem;
class DcmStack;
class DcmSequenceOfItems;
class DcmAttributeTag;
class SiPrivateKey;
class SiCertificate;
class SiSecurityProfile;
class SiMAC;
class SiTimeStamp;
/** this class provides the main interface to the dcmsign module - it allows
* to create, examine and verify digital signatures in DICOM datasets or
* items. The methods in this class do not handle digital signatures
* embedded in sequence items within the dataset, other than providing
* helper functions that allow to locate and attach the sub-items
* separately.
*/
class DcmSignature
{
public:
/** initializes the dcmsign library including the underlying OpenSSL library.
* this method should be called by main() before any object of the dcmsign
* library is created or used.
*/
static void initializeLibrary();
/// default constructor
DcmSignature();
/// destructor
virtual ~DcmSignature();
/** attaches a DICOM dataset or item to the signature object.
* The dataset is detached by a call to detach() or by destruction
* of the signature object. This object may modify but never deletes
* an attached dataset.
* @param dataset dataset or item to be attached
*/
void attach(DcmItem *dataset);
/** detaches an attached DICOM dataset from the signature object.
*/
void detach();
/** creates a new digital signature in the current dataset.
* Checks whether private and public key match and whether
* all requirements of the given security profile are fulfilled.
* @param key private key for signature creation
* @param cert certificate with public key
* @param mac MAC algorithm to be used for signature creation
* @param profile security profile for signature creation
* @param xfer transfer syntax to use when serializing DICOM data
* @param tagList pointer to list of attribute tags to sign, may be NULL.
* If this parameter is nonzero, it contains a list of attribute sign.
* The real list of attributes signed is derived from this parameter plus the
* requirements of the security profile. If NULL, a universal match is assumed,
* i.e. all signable attributes in the data set are signed.
* @param timeStamp pointer to time stamp client used to create timestamps
* for the digital signature.
* @return status code
*/
OFCondition createSignature(
SiPrivateKey& key,
SiCertificate& cert,
SiMAC& mac,
SiSecurityProfile& profile,
E_TransferSyntax xfer=EXS_LittleEndianExplicit,
const DcmAttributeTag *tagList=NULL,
SiTimeStamp *timeStamp=NULL);
/** returns the number of signatures in the dataset. Does not count
* signatures embedded in sequence items within the dataset.
*/
unsigned long numberOfSignatures();
/** removes a signature from the dataset.
* @param i index, must be < numberOfSignatures().
* @return status code
*/
OFCondition removeSignature(unsigned long i);
/** selects one of the digital signatures from the attached dataset for reading.
* @param i index, must be < numberOfSignatures()
* @return status code
*/
OFCondition selectSignature(unsigned long i);
/** verifies the current signature.
* Current signature must be selected with selectSignature().
* @return SI_EC_Normal if signature is complete and valid, an error code
* describing the type of verification failure otherwise.
*/
OFCondition verifyCurrent();
/** returns the MAC ID of the current signature.
* Current signature must be selected with selectSignature().
* @param macID MAC ID returned in this parameter upon success
* @return status code
*/
OFCondition getCurrentMacID(Uint16& macID);
/** returns the MAC Calculation Transfer Syntax of the current signature.
* If the transfer syntax is well-known, the UID is replaced by the
* transfer syntax name preceded by '='.
* Current signature must be selected with selectSignature().
* @param str transfer syntax name or UID returned in this parameter upon success
* @return status code
*/
OFCondition getCurrentMacXferSyntaxName(OFString& str);
/** returns the MAC Algorithm Name of the current signature.
* Current signature must be selected with selectSignature().
* @param str MAC algorithm name returned in this parameter upon success
* @return status code
*/
OFCondition getCurrentMacName(OFString& str);
/** returns the Digital Signature UID of the current signature.
* Current signature must be selected with selectSignature().
* @param str signature UID returned in this parameter upon success
* @return status code
*/
OFCondition getCurrentSignatureUID(OFString& str);
/** returns the Signature Date/Time of the current signature.
* Current signature must be selected with selectSignature().
* @param str signature date/time returned in this parameter upon success
* @return status code
*/
OFCondition getCurrentSignatureDateTime(OFString& str);
/** returns the Data Elements Signed attribute of the current signature if present.
* Current signature must be selected with selectSignature().
* If a valid signature is selected but the signature does not contain
* the Data Elements Signed element (i.e. all attributes are signed), this method
* returns an error code.
* @param desig data elements signed returned in this parameter upon success
* @return status code
*/
OFCondition getCurrentDataElementsSigned(DcmAttributeTag& desig);
/** returns the certificate of the current signature if present.
* Current signature must be selected with selectSignature().
* May return NULL if certificate is unavailable.
* @return pointer to current certificate, NULL if unavailable.
*/
SiCertificate *getCurrentCertificate();
/** dump all data that is fed into the MAC algorithm into the given file,
* which must be opened and closed by caller.
* @param f pointer to file already opened for writing; may be NULL.
*/
void setDumpFile(FILE *f);
/** recursively browses through the given dataset and searches the first
* occurence of the DigitalSignaturesSequence. If found, returns
* a pointer to the Item in which the sequence is contained.
* @param item dataset to be browsed
* @param stack search stack, must be passed to findNextSignatureItem() later on.
* @return pointer to Item containing a DigitalSignatureSequence if found, NULL otherwise.
*/
static DcmItem *findFirstSignatureItem(DcmItem& item, DcmStack& stack);
/** recursively browses through the given dataset and searches the next
* occurence of the DigitalSignaturesSequence. If found, returns
* a pointer to the Item in which the sequence is contained.
* @param item dataset to be browsed
* @param stack search stack as returned by findFirstSignatureItem() or the last call to this method.
* @return pointer to Item containing a DigitalSignatureSequence if found, NULL otherwise.
*/
static DcmItem *findNextSignatureItem(DcmItem& item, DcmStack& stack);
private:
/// private undefined copy constructor
DcmSignature(DcmSignature& arg);
/// private undefined copy assignment operator
DcmSignature& operator=(DcmSignature& arg);
/// removes the selection of a current signature if present
void deselect();
/** allocates a new mac ID number for a new signature.
* examines all mac ID numbers in the digital signatures sequence
* and in the mac parameters sequence and returns an unused number.
* @param newID upon successful return, new number is passed in this parameter
* @return status code
*/
OFCondition allocateMACID(Uint16& newID);
/** searches a given item for the DCM_MACIDnumber element and returns
* its value if present, otherwise returns 0.
* @param item item to be searched
* @return MAC ID number in item or zero if absent.
*/
static Uint16 getMACIDnumber(DcmItem &item);
/** returns the current date and time as a DICOM DT string.
* @param str date/time returned in this string.
*/
static void currentDateTime(OFString &str);
/// pointer to current item if attached, NULL otherwise
DcmItem *currentItem;
/// pointer to mac parameters sequence of attached item, may be NULL if not attached or not yet present
DcmSequenceOfItems *macParametersSq;
/// pointer to digital signatures sequence of attached item, may be NULL if not attached or not yet present
DcmSequenceOfItems *signatureSq;
/// if nonzero, the data fed to the MAC algorithm is also stored in this file.
FILE *dumpFile;
/// pointer to currently selected signature item
DcmItem *selectedSignatureItem;
/// pointer to currently selected mac parameters item
DcmItem *selectedMacParametersItem;
/// pointer to certificate for currently selected signature item
SiCertificate *selectedCertificate;
};
#endif
#endif
/*
* $Log: dcsignat.h,v $
* Revision 1.4 2010-10-14 13:17:24 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.3 2005-12-08 16:04:29 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.2 2003/06/04 14:21:03 meichel
* Simplified include structure to avoid preprocessor limitation
* (max 32 #if levels) on MSVC5 with STL.
*
* Revision 1.1 2002/12/20 14:53:08 wilkens
* Modified name clash resulting in a compiler error on Solaris 2.5.1 using
* compiler SC 2.0.1.
*
* Revision 1.5 2002/11/27 14:53:40 meichel
* Adapted module dcmsign to use of new header file ofstdinc.h
*
* Revision 1.4 2001/11/16 15:50:49 meichel
* Adapted digital signature code to final text of supplement 41.
*
* Revision 1.3 2001/09/26 14:30:18 meichel
* Adapted dcmsign to class OFCondition
*
* Revision 1.2 2001/06/01 15:50:46 meichel
* Updated copyright header
*
* Revision 1.1 2000/11/07 16:48:51 meichel
* Initial release of dcmsign module for DICOM Digital Signatures
*
*
*/
|