mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 19:49:43 +00:00
17 lines
370 B
C++
17 lines
370 B
C++
|
#include <qpdf/RC4.hh>
|
||
|
#include <qpdf/QPDFCryptoProvider.hh>
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
RC4::RC4(unsigned char const* key_data, int key_len) :
|
||
|
crypto(QPDFCryptoProvider::getImpl())
|
||
|
{
|
||
|
this->crypto->RC4_init(key_data, key_len);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
RC4::process(unsigned char *in_data, size_t len, unsigned char* out_data)
|
||
|
{
|
||
|
this->crypto->RC4_process(in_data, len, out_data);
|
||
|
}
|