The module to encrypt data using block cipher. More...
#include <block-cipher.hpp>
Classes | |
class | Impl |
Public Member Functions | |
BlockCipher (BlockCipherAlgorithm algo, CipherOperator op, const uint8_t *key, size_t keyLen, const uint8_t *iv, size_t ivLen) | |
Create a block cipher. More... | |
~BlockCipher () | |
![]() | |
virtual | ~Upstream ()=default |
![]() | |
virtual | ~Downstream ()=default |
size_t | write (const uint8_t *buf, size_t size) |
Accept input data and perform transformation. More... | |
void | end () |
Close the input interface of a module. More... | |
bool | isEnd () const |
Check if the input interface of a module is closed. More... | |
void | setIndex (size_t index) |
Set the module index. More... | |
size_t | getIndex () const |
Get the module index. More... | |
Additional Inherited Members | |
![]() | |
typedef std::vector< uint8_t > | OBuffer |
![]() | |
Transform () | |
void | flushOutputBuffer () |
Read the content from output buffer and write it into next module. More... | |
void | flushAllOutput () |
Read the all the content from output buffer and write it into next module. More... | |
void | setOutputBuffer (unique_ptr< OBuffer > buffer) |
Set output buffer to buffer . More... | |
bool | isOutputBufferEmpty () const |
Check if output buffer is empty. More... | |
![]() | |
Upstream () | |
void | appendChain (unique_ptr< Downstream > tail) |
connect to next transformation module More... | |
Downstream * | getNext () |
![]() | |
Downstream () | |
![]() | |
unique_ptr< Downstream > | m_next |
The module to encrypt data using block cipher.
The padding scheme of the block cipher is set to the OpenSSL default, which is PKCS padding.
Definition at line 38 of file block-cipher.hpp.
ndn::security::transform::BlockCipher::BlockCipher | ( | BlockCipherAlgorithm | algo, |
CipherOperator | op, | ||
const uint8_t * | key, | ||
size_t | keyLen, | ||
const uint8_t * | iv, | ||
size_t | ivLen | ||
) |
Create a block cipher.
algo | The block cipher algorithm to use. |
op | Whether to encrypt or decrypt. |
key | Pointer to the key. |
keyLen | Size of the key. |
iv | Pointer to the initialization vector. |
ivLen | Length of the initialization vector. |
Definition at line 52 of file block-cipher.cpp.
References ndn::AES_CBC, and ndn::security::transform::Downstream::getIndex().
|
default |