aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_RC4.cc
blob: 8e3548e55f9ea7b2a88e0648c23cf9b0e6384c6c (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <qpdf/Pl_RC4.hh>

#include <qpdf/QUtil.hh>

Pl_RC4::Pl_RC4(char const* identifier, Pipeline* next,
	       unsigned char const* key_data, int key_len,
	       size_t out_bufsize) :
    Pipeline(identifier, next),
    out_bufsize(out_bufsize),
    rc4(key_data, key_len)
{
    this->outbuf = PointerHolder<unsigned char>(
        true, new unsigned char[out_bufsize]);
}

Pl_RC4::~Pl_RC4()
{
}

void
Pl_RC4::write(unsigned char* data, size_t len)
{
    if (this->outbuf.get() == 0)
    {
	throw std::logic_error(
	    this->identifier +
	    ": Pl_RC4: write() called after finish() called");
    }

    size_t bytes_left = len;
    unsigned char* p = data;

    while (bytes_left > 0)
    {
	size_t bytes =
            (bytes_left < this->out_bufsize ? bytes_left : out_bufsize);
	bytes_left -= bytes;
        // lgtm[cpp/weak-cryptographic-algorithm]
	rc4.process(p, bytes, outbuf.get());
	p += bytes;
	getNext()->write(outbuf.get(), bytes);
    }
}

void
Pl_RC4::finish()
{
    this->outbuf = 0;
    this->getNext()->finish();
}