Functions | |
void | CZipArchive::CryptDecodeBuffer (DWORD uCount) |
Decode uCount bytes from the internal buffer. | |
void | CZipArchive::CryptEncodeBuffer () |
Encode the internal buffer. | |
void | CZipArchive::CryptEncode (char &c) |
Encode the character c and update encryption keys . | |
void | CZipArchive::CryptCryptHeader (long iCrc, CZipAutoBuffer &buf) |
Create an encryption header for the new file in the archive. | |
DWORD | CZipArchive::CryptCRC32 (DWORD l, char c) |
void | CZipArchive::CryptDecode (char &c) |
Decode the character c and update encryption keys . | |
char | CZipArchive::CryptDecryptByte () |
bool | CZipArchive::CryptCheck () |
Decrypt the encryption header and check its control value. | |
void | CZipArchive::CryptUpdateKeys (char c) |
Update encryption keys with the given value. | |
void | CZipArchive::CryptInitKeys () |
Initialize encryption keys . | |
Variables | |
CZipAutoBuffer | CZipArchive::m_pszPassword |
The archive password. | |
DWORD | CZipArchive::m_keys [3] |
Encryption keys. |
|
Decrypt the encryption header and check its control value. The control value depends on the presence of the data descriptor.
|
|
Create an encryption header for the new file in the archive.
|
|
Decode uCount bytes from the internal buffer.
|
|
Encode the internal buffer.
|
|
Encryption keys. The key values are initialized using a supplied encryption password.
Definition at line 2239 of file ZipArchive.h. |
|
The archive password. If empty, the new file will not be encrypted. Definition at line 2232 of file ZipArchive.h. |