File: SignatureGenerator.h

package info (click to toggle)
libpodofo 0.9.7%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,404 kB
  • sloc: cpp: 62,625; sh: 65; makefile: 13
file content (18 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (13)
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_