aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/Pl_RC4.hh
blob: fab3ac319e7e00d213821f4c2e0e99e8a92909c1 (plain) (blame)
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
#ifndef __PL_RC4_HH__
#define __PL_RC4_HH__

#include <qpdf/Pipeline.hh>

#include <qpdf/RC4.hh>

DLL_EXPORT
class Pl_RC4: public Pipeline
{
  public:
    static int const def_bufsize = 65536;

    // key_len of -1 means treat key_data as a null-terminated string
    Pl_RC4(char const* identifier, Pipeline* next,
	   unsigned char const* key_data, int key_len = -1,
	   int out_bufsize = def_bufsize);
    virtual ~Pl_RC4();

    virtual void write(unsigned char* data, int len);
    virtual void finish();

  private:
    unsigned char* outbuf;
    int out_bufsize;
    RC4 rc4;
};

#endif // __PL_RC4_HH__