mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
- Encryption strength for 7z archives was increased the size of random initialization vector was increased from 64-bit to 128-bit, and the pseudo-random number generator was improved. - Some bugs were fixed.
21 lines
296 B
C
21 lines
296 B
C
/* DllSecur.h -- DLL loading for security
|
|
2018-02-19 : Igor Pavlov : Public domain */
|
|
|
|
#ifndef __DLL_SECUR_H
|
|
#define __DLL_SECUR_H
|
|
|
|
#include "7zTypes.h"
|
|
|
|
EXTERN_C_BEGIN
|
|
|
|
#ifdef _WIN32
|
|
|
|
void My_SetDefaultDllDirectories();
|
|
void LoadSecurityDlls();
|
|
|
|
#endif
|
|
|
|
EXTERN_C_END
|
|
|
|
#endif
|