encryptrelease_demo.zip
Encrypt.exe
hashlibproper.dll
SysInfo.dll
encrypt_src.zip
Encrypt.dsp
Encrypt.dsw
HashLibProper.dll
HashLibProper.lib
SysInfo.dll
|
// _THE BlowFishEnc ENCRYPTION ALGORITHM_
// by Bruce Schneier
// Revised code--3/20/94
// Converted to C++ class 5/96, Jim Conger
// Updated to support FileEncryption Utility by Nir Dremer, 9/02
#pragma once
#include "Encryption_i.h"
class BlowFishEnc : public EncryptionInterface
{
public:
BlowFishEnc(const char *pwd);
~BlowFishEnc();
DWORD encryptStream(const char *plain, const DWORD size, char *cipher);
DWORD decryptStream(const char *cipher, const DWORD size, char *plain);
private:
DWORD GetOutputLength(DWORD lInputLong);
DWORD *PArray;
DWORD (*SBoxes)[256];
void BlowFishEnc_encipher(DWORD *xl, DWORD *xr);
void BlowFishEnc_decipher(DWORD *xl, DWORD *xr);
};
union aword {
DWORD dword;
BYTE byte [4];
struct {
unsigned int byte3:8;
unsigned int byte2:8;
unsigned int byte1:8;
unsigned int byte0:8;
} w;
};
|
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please
let us know and we'll add colourisation support for it.