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
|
#include "isymcryptbase.ih"
ISymCryptBase::ISymCryptBase(
std::string const &inStreamName,
string const &cipherName,
string const &key,
string const &iv,
size_t inBufSize,
OSSL_PARAM const *params,
int (*evpInit)(EVP_CIPHER_CTX *, EVP_CIPHER const *,
unsigned char const *key, unsigned char const *iv,
OSSL_PARAM const *param),
int (*evpUpdate)(EVP_CIPHER_CTX *,
unsigned char *out, int *outl,
unsigned char const *in, int inl),
int (*evpFinal)(EVP_CIPHER_CTX *,
unsigned char *out, int *outl)
)
:
SymCryptBase(cipherName, key, iv, params, evpInit),
d_ifStream(
new ifstream{ Exception::factory<ifstream>(inStreamName) }
),
d_inStream(*d_ifStream.get()),
d_inBufSize(inBufSize < 100 ? 100 : inBufSize),
d_inBuf(new char[d_inBufSize]),
d_evpUpdate(evpUpdate),
d_evpFinal(evpFinal)
{}
|