27 #include "BlockCipher.h"
37 bool setKey(
const uint8_t *key,
size_t len);
38 bool setIV(
const uint8_t *iv,
size_t len);
40 void encrypt(uint8_t *output,
const uint8_t *input,
size_t len);
41 void decrypt(uint8_t *output,
const uint8_t *input,
size_t len);
Abstract base class for block ciphers.
Abstract base class for stream ciphers.
Concrete base class to assist with implementing OFB for 128-bit block ciphers.
void setBlockCipher(BlockCipher *cipher)
Sets the block cipher to use for this OFB object.
size_t keySize() const
Default size of the key for this cipher, in bytes.
bool setIV(const uint8_t *iv, size_t len)
Sets the initialization vector to use for future encryption and decryption operations.
void clear()
Clears all security-sensitive state from this cipher.
OFBCommon()
Constructs a new cipher in OFB mode.
void encrypt(uint8_t *output, const uint8_t *input, size_t len)
Encrypts an input buffer and writes the ciphertext to an output buffer.
size_t ivSize() const
Size of the initialization vector for this cipher, in bytes.
virtual ~OFBCommon()
Destroys this cipher object after clearing sensitive information.
bool setKey(const uint8_t *key, size_t len)
Sets the key to use for future encryption and decryption operations.
void decrypt(uint8_t *output, const uint8_t *input, size_t len)
Decrypts an input buffer and writes the plaintext to an output buffer.
Implementation of the Output Feedback (OFB) mode for 128-bit block ciphers.
OFB()
Constructs a new OFB object for the block cipher T.