|
Botan
1.11.4
|
#include <cfb.h>
Public Member Functions | |
| virtual bool | attachable () |
| CFB_Decryption (BlockCipher *cipher, size_t feedback=0) | |
| CFB_Decryption (BlockCipher *cipher, const SymmetricKey &key, const InitializationVector &iv, size_t feedback=0) | |
| virtual void | end_msg () |
| Key_Length_Specification | key_spec () const override |
| std::string | name () const |
| void | set_iv (const InitializationVector &) |
| void | set_key (const SymmetricKey &key) |
| virtual void | start_msg () |
| bool | valid_iv_length (size_t iv_len) const |
| bool | valid_keylength (size_t length) const |
| ~CFB_Decryption () | |
Protected Member Functions | |
| virtual void | send (const byte in[], size_t length) |
| void | send (byte in) |
| void | send (const secure_vector< byte > &in) |
| void | send (const std::vector< byte > &in) |
| void | send (const secure_vector< byte > &in, size_t length) |
| void | send (const std::vector< byte > &in, size_t length) |
| Botan::CFB_Decryption::CFB_Decryption | ( | BlockCipher * | cipher, |
| size_t | feedback = 0 |
||
| ) |
Definition at line 98 of file cfb.cpp.
References Botan::BlockCipher::block_size(), and Botan::ASN1::to_string().
| Botan::CFB_Decryption::CFB_Decryption | ( | BlockCipher * | cipher, |
| const SymmetricKey & | key, | ||
| const InitializationVector & | iv, | ||
| size_t | feedback = 0 |
||
| ) |
Definition at line 115 of file cfb.cpp.
References Botan::BlockCipher::block_size(), set_iv(), set_key(), and Botan::ASN1::to_string().
|
inline |
|
inlinevirtualinherited |
Check whether this filter is an attachable filter.
Reimplemented in Botan::SecureQueue, and Botan::DataSink.
|
inlinevirtualinherited |
Notify that the current message is finished; flush buffers and do end-of-message processing (if any).
Reimplemented in Botan::MAC_Filter, Botan::Hash_Filter, Botan::PK_Verifier_Filter, Botan::Base64_Decoder, Botan::Hex_Decoder, Botan::Zlib_Decompression, Botan::Lzma_Decompression, Botan::PK_Signer_Filter, Botan::Bzip_Decompression, Botan::PK_Decryptor_Filter, Botan::Base64_Encoder, Botan::PBE_PKCS5v15, Botan::PBE_PKCS5v20, Botan::Hex_Encoder, Botan::Lzma_Compression, Botan::Bzip_Compression, Botan::Zlib_Compression, and Botan::PK_Encryptor_Filter.
|
inlineoverridevirtual |
Implements Botan::Keyed_Filter.
Definition at line 61 of file cfb.h.
|
inlinevirtual |
Implements Botan::Filter.
Definition at line 55 of file cfb.h.
Referenced by set_iv().
|
protectedvirtualinherited |
| in | some input for the filter |
| length | the length of in |
Reimplemented in Botan::Threaded_Fork.
Definition at line 28 of file filter.cpp.
References Botan::Filter::write().
Referenced by Botan::PK_Encryptor_Filter::end_msg(), Botan::Zlib_Compression::end_msg(), Botan::Bzip_Compression::end_msg(), Botan::Lzma_Compression::end_msg(), Botan::Hex_Encoder::end_msg(), Botan::Base64_Encoder::end_msg(), Botan::PK_Decryptor_Filter::end_msg(), Botan::Bzip_Decompression::end_msg(), Botan::PK_Signer_Filter::end_msg(), Botan::Lzma_Decompression::end_msg(), Botan::Zlib_Decompression::end_msg(), Botan::Hex_Decoder::end_msg(), Botan::Base64_Decoder::end_msg(), Botan::PK_Verifier_Filter::end_msg(), Botan::Hash_Filter::end_msg(), Botan::MAC_Filter::end_msg(), Botan::Bzip_Compression::flush(), Botan::Zlib_Compression::flush(), Botan::Lzma_Compression::flush(), Botan::Bzip_Compression::write(), Botan::Zlib_Compression::write(), Botan::Lzma_Compression::write(), Botan::StreamCipher_Filter::write(), Botan::Bzip_Decompression::write(), Botan::Lzma_Decompression::write(), Botan::Zlib_Decompression::write(), Botan::Hex_Decoder::write(), and Botan::Base64_Decoder::write().
|
inlineprotectedinherited |
| in | some input for the filter |
Definition at line 65 of file filter.h.
References Botan::Filter::send().
Referenced by Botan::Filter::send().
|
inlineprotectedinherited |
| in | some input for the filter |
Definition at line 70 of file filter.h.
References Botan::Filter::send().
Referenced by Botan::Filter::send().
|
inlineprotectedinherited |
| in | some input for the filter |
Definition at line 75 of file filter.h.
References Botan::Filter::send().
Referenced by Botan::Filter::send().
|
inlineprotectedinherited |
|
inlineprotectedinherited |
|
virtual |
Set the initialization vector of this filter. Note: you should call set_iv() only after you have called set_key()
| iv | the initialization vector to use |
Reimplemented from Botan::Keyed_Filter.
Definition at line 135 of file cfb.cpp.
References Botan::OctetString::bits_of(), Botan::BlockCipher::encrypt(), Botan::OctetString::length(), name(), valid_iv_length(), and Botan::zeroise().
Referenced by CFB_Decryption().
|
inlinevirtual |
Set the key of this filter
| key | the key to use |
Implements Botan::Keyed_Filter.
Definition at line 59 of file cfb.h.
Referenced by CFB_Decryption().
|
inlinevirtualinherited |
Start a new message. Must be closed by end_msg() before another message can be started.
Reimplemented in Botan::Zlib_Decompression, Botan::Lzma_Decompression, Botan::Bzip_Decompression, Botan::PBE_PKCS5v15, Botan::PBE_PKCS5v20, Botan::Lzma_Compression, Botan::Bzip_Compression, and Botan::Zlib_Compression.
|
inlinevirtual |
Check whether an IV length is valid for this filter
| length | the IV length to be checked for validity |
Reimplemented from Botan::Keyed_Filter.
Definition at line 63 of file cfb.h.
Referenced by set_iv().
|
inlineinherited |
Check whether a key length is valid for this filter
| length | the key length to be checked for validity |
Definition at line 41 of file key_filt.h.
1.8.3.1