mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 10:07:10 -06:00
23.01
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// Crypto/Rar20Crypto.h
|
||||
|
||||
#ifndef __CRYPTO_RAR20_CRYPTO_H
|
||||
#define __CRYPTO_RAR20_CRYPTO_H
|
||||
#ifndef ZIP7_INC_CRYPTO_RAR20_CRYPTO_H
|
||||
#define ZIP7_INC_CRYPTO_RAR20_CRYPTO_H
|
||||
|
||||
#include "../../Common/MyCom.h"
|
||||
|
||||
@@ -31,8 +31,8 @@ public:
|
||||
~CData() { Wipe(); }
|
||||
void Wipe()
|
||||
{
|
||||
MY_memset_0_ARRAY(SubstTable);
|
||||
MY_memset_0_ARRAY(Keys);
|
||||
Z7_memset_0_ARRAY(SubstTable);
|
||||
Z7_memset_0_ARRAY(Keys);
|
||||
}
|
||||
|
||||
void EncryptBlock(Byte *buf) { CryptBlock(buf, true); }
|
||||
@@ -40,14 +40,13 @@ public:
|
||||
void SetPassword(const Byte *password, unsigned passwordLen);
|
||||
};
|
||||
|
||||
class CDecoder:
|
||||
class CDecoder Z7_final:
|
||||
public ICompressFilter,
|
||||
public CMyUnknownImp,
|
||||
public CData
|
||||
{
|
||||
public:
|
||||
MY_UNKNOWN_IMP
|
||||
INTERFACE_ICompressFilter(;)
|
||||
Z7_COM_UNKNOWN_IMP_0
|
||||
Z7_IFACE_COM7_IMP(ICompressFilter)
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user