BlowFish encryption class. More...
#include <juce_BlowFish.h>
Public Member Functions | |
BlowFish (const void *keyData, int keyBytes) | |
Creates an object that can encode/decode based on the specified key. | |
BlowFish (const BlowFish &) | |
Creates a copy of another blowfish object. | |
BlowFish & | operator= (const BlowFish &) noexcept |
Copies another blowfish object. | |
~BlowFish () noexcept | |
Destructor. | |
void | encrypt (uint32 &data1, uint32 &data2) const noexcept |
Encrypts a pair of 32-bit integers. | |
void | decrypt (uint32 &data1, uint32 &data2) const noexcept |
Decrypts a pair of 32-bit integers. | |
void | encrypt (MemoryBlock &data) const |
Encrypts a memory block. | |
void | decrypt (MemoryBlock &data) const |
Decrypts a memory block. | |
int | encrypt (void *buffer, size_t sizeOfMsg, size_t bufferSize) const noexcept |
Encrypts data in-place. | |
int | decrypt (void *buffer, size_t bytes) const noexcept |
Decrypts data in-place. | |
BlowFish encryption class.
BlowFish::BlowFish | ( | const void * | keyData, |
int | keyBytes ) |
Creates an object that can encode/decode based on the specified key.
The key data can be up to 72 bytes long.
BlowFish::BlowFish | ( | const BlowFish & | ) |
Creates a copy of another blowfish object.
|
noexcept |
Destructor.
Encrypts a pair of 32-bit integers.
Decrypts a pair of 32-bit integers.
void BlowFish::encrypt | ( | MemoryBlock & | data | ) | const |
Encrypts a memory block.
void BlowFish::decrypt | ( | MemoryBlock & | data | ) | const |
Decrypts a memory block.
|
noexcept |
Encrypts data in-place.
buffer | The message that should be encrypted. See bufferSize on size requirements! |
sizeOfMsg | The size of the message that should be encrypted in bytes |
bufferSize | The size of the buffer in bytes. To accommodate the encrypted data, the buffer must be larger than the message: the size of the buffer needs to be equal or greater than the size of the message in bytes rounded to the next integer which is divisible by eight. If the message size in bytes is already divisible by eight then you need to add eight bytes to the buffer size. If in doubt simply use bufferSize = sizeOfMsg + 8. |
|
noexcept |
Decrypts data in-place.
buffer | The encrypted data that should be decrypted |
bytes | The size of the encrypted data in bytes |