mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 18:11:35 -06:00
4.44 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
804edc5756
commit
d9666cf046
35
CPP/7zip/Crypto/Rar20/Rar20Cipher.h
Executable file
35
CPP/7zip/Crypto/Rar20/Rar20Cipher.h
Executable file
@@ -0,0 +1,35 @@
|
||||
// Crypto/Rar20Cipher.h
|
||||
|
||||
#ifndef __CRYPTO_RAR20_CIPHER_H
|
||||
#define __CRYPTO_RAR20_CIPHER_H
|
||||
|
||||
#include "../../ICoder.h"
|
||||
#include "../../IPassword.h"
|
||||
#include "Common/MyCom.h"
|
||||
|
||||
#include "Common/Types.h"
|
||||
#include "Rar20Crypto.h"
|
||||
|
||||
namespace NCrypto {
|
||||
namespace NRar20 {
|
||||
|
||||
class CDecoder:
|
||||
public ICompressFilter,
|
||||
public ICryptoSetPassword,
|
||||
public CMyUnknownImp
|
||||
{
|
||||
public:
|
||||
CData _coder;
|
||||
|
||||
MY_UNKNOWN_IMP1(ICryptoSetPassword)
|
||||
|
||||
STDMETHOD(Init)();
|
||||
STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
|
||||
|
||||
STDMETHOD(CryptoSetPassword)(const Byte *data, UInt32 size);
|
||||
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user