diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2016-02-22 16:24:32 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2016-02-22 16:24:32 +0000 |
commit | 99177f6965456cdccb93b6bafcf476a95ecacd6a (patch) | |
tree | 1e0ec5b1f0e225a88b93751f6962ddb14e7e208d /plugins/Kuzne4ikCrypt/src/stdcrypt.h | |
parent | c61985b0312f634913926bf8b9021ad6ccec8324 (diff) |
KuznechikCrypt: cbc encryption mode
git-svn-id: http://svn.miranda-ng.org/main/trunk@16323 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Kuzne4ikCrypt/src/stdcrypt.h')
-rw-r--r-- | plugins/Kuzne4ikCrypt/src/stdcrypt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Kuzne4ikCrypt/src/stdcrypt.h b/plugins/Kuzne4ikCrypt/src/stdcrypt.h index b0708da257..dd8bb249d8 100644 --- a/plugins/Kuzne4ikCrypt/src/stdcrypt.h +++ b/plugins/Kuzne4ikCrypt/src/stdcrypt.h @@ -29,8 +29,9 @@ struct CCrypt : public MICryptoEngine, public MZeroedObject CMStringA m_password;
BYTE m_key[KEY_LENGTH];
+ BYTE m_iv [KEY_LENGTH];
- BYTE m_ctx[kEcb14ContextLen];
+ BYTE m_ctx[kCbc14ContextLen];
STDMETHODIMP_(void) destroy();
|