File: SignatureGenerator.h

package info (click to toggle)
libpodofo 0.9.8%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,476 kB
  • sloc: cpp: 63,601; sh: 65; makefile: 14
file content (18 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#ifndef _SIGNATURE_GENERATOR_H_
#define _SIGNATURE_GENERATOR_H_

namespace PoDoFo {
    class PdfData;
};

/** Abstract class for signature generator
 */
class SignatureGenerator {
public:
	virtual bool appendData(const char* pData, unsigned int dataSize)=0;
	virtual bool finishData()=0;
	virtual const PoDoFo::PdfData* getSignature()=0;
};

#endif // _SIGNATURE_GENERATOR_H_