File: SignatureGenerator.h

package info (click to toggle)
libpodofo 0.9.0-1.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 5,068 kB
  • sloc: cpp: 53,348; ansic: 339; sh: 96; makefile: 59
file content (18 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (10)
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_