|
static uint32 | Common::F (const BlowfishContext &ctx, uint32 x) |
|
static void | Common::blowfishEnc (BlowfishContext &ctx, uint32 &xl, uint32 &xr) |
|
static void | Common::blowfishDec (BlowfishContext &ctx, uint32 &xl, uint32 &xr) |
|
static void | Common::blowfishSetKey (BlowfishContext &ctx, const byte *key, size_t keyLength) |
|
static void | Common::blowfishECB (BlowfishContext &ctx, Mode mode, const byte *input, byte *output) |
|
MemoryReadStream * | Common::blowfishEBC (SeekableReadStream &input, const std::vector< byte > &key, Mode mode) |
|
MemoryReadStream * | Common::encryptBlowfishEBC (SeekableReadStream &input, const std::vector< byte > &key) |
| Encrypt the stream with the Blowfish algorithm in EBC mode. More...
|
|
MemoryReadStream * | Common::decryptBlowfishEBC (SeekableReadStream &input, const std::vector< byte > &key) |
| Decrypt the stream with the Blowfish algorithm in EBC mode. More...
|
|
Encryption / decryption using Bruce Schneier's Blowfish algorithm.
Definition in file blowfish.cpp.