8#ifndef BOTAN_STREAM_MODE_H_
9#define BOTAN_STREAM_MODE_H_
11#include <botan/cipher_mode.h>
13#if defined(BOTAN_HAS_STREAM_CIPHER)
14 #include <botan/stream_cipher.h>
19#if defined(BOTAN_HAS_STREAM_CIPHER)
21class Stream_Cipher_Mode
final :
public Cipher_Mode {
26 explicit Stream_Cipher_Mode(std::unique_ptr<StreamCipher> cipher) : m_cipher(std::move(cipher)) {}
28 size_t output_length(
size_t input_length)
const override {
return input_length; }
30 size_t update_granularity()
const override {
return 1; }
32 size_t ideal_granularity()
const override {
33 const size_t buf_size = m_cipher->buffer_size();
38 return buf_size * (256 / buf_size);
41 size_t minimum_final_size()
const override {
return 0; }
43 size_t default_nonce_length()
const override {
return 0; }
45 bool valid_nonce_length(
size_t nonce_len)
const override {
return m_cipher->valid_iv_length(nonce_len); }
47 Key_Length_Specification key_spec()
const override {
return m_cipher->key_spec(); }
49 std::string
name()
const override {
return m_cipher->name(); }
51 void clear()
override {
56 void reset()
override {
59 bool has_keying_material()
const override {
return m_cipher->has_keying_material(); }
62 void start_msg(
const uint8_t nonce[],
size_t nonce_len)
override {
64 m_cipher->set_iv(nonce, nonce_len);
68 size_t process_msg(uint8_t buf[],
size_t sz)
override {
69 m_cipher->cipher1(buf, sz);
73 void finish_msg(secure_vector<uint8_t>& buf,
size_t offset)
override {
return update(buf, offset); }
75 void key_schedule(std::span<const uint8_t> key)
override { m_cipher->set_key(key); }
77 std::unique_ptr<StreamCipher> m_cipher;
#define BOTAN_ASSERT_NOMSG(expr)
int(* update)(CTX *, const void *, CC_LONG len)
int(* final)(unsigned char *, CTX *)