mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 22:06:59 -06:00
27 lines
466 B
C++
Executable File
27 lines
466 B
C++
Executable File
// Crypto/ZipCrypto.h
|
|
|
|
#ifndef __CRYPTO_ZIP_CRYPTO_H
|
|
#define __CRYPTO_ZIP_CRYPTO_H
|
|
|
|
namespace NCrypto {
|
|
namespace NZip {
|
|
|
|
const int kHeaderSize = 12;
|
|
class CCipher
|
|
{
|
|
UInt32 Keys[3];
|
|
void UpdateKeys(Byte b);
|
|
Byte DecryptByteSpec();
|
|
public:
|
|
void SetPassword(const Byte *password, UInt32 passwordLength);
|
|
Byte DecryptByte(Byte encryptedByte);
|
|
Byte EncryptByte(Byte b);
|
|
void DecryptHeader(Byte *buffer);
|
|
void EncryptHeader(Byte *buffer);
|
|
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|