8#include <botan/internal/commoncrypto.h>
9#include <botan/internal/commoncrypto_utils.h>
10#include <botan/cipher_mode.h>
11#include <botan/internal/rounding.h>
19class CommonCrypto_Cipher_Mode
final :
public Cipher_Mode
22 CommonCrypto_Cipher_Mode(std::string_view
name,
24 const CommonCryptor_Opts& opts);
26 ~CommonCrypto_Cipher_Mode();
28 std::string provider()
const override {
return "commoncrypto"; }
29 std::string
name()
const override {
return m_mode_name; }
31 size_t output_length(
size_t input_length)
const override;
32 size_t update_granularity()
const override;
33 size_t ideal_granularity()
const override;
34 size_t minimum_final_size()
const override;
35 size_t default_nonce_length()
const override;
36 bool valid_nonce_length(
size_t nonce_len)
const override;
37 void clear()
override;
38 void reset()
override;
39 Key_Length_Specification key_spec()
const override;
40 bool has_keying_material()
const override {
return m_key_set; }
43 void key_schedule(
const uint8_t key[],
size_t length)
override;
45 void start_msg(
const uint8_t nonce[],
size_t nonce_len)
override;
46 size_t process_msg(uint8_t msg[],
size_t msg_len)
override;
47 void finish_msg(secure_vector<uint8_t>& final_block,
size_t offset0)
override;
49 const std::string m_mode_name;
52 CCCryptorRef m_cipher =
nullptr;
57CommonCrypto_Cipher_Mode::CommonCrypto_Cipher_Mode(std::string_view
name,
58 Cipher_Dir direction,
const CommonCryptor_Opts& opts) :
60 m_direction(direction),
67CommonCrypto_Cipher_Mode::~CommonCrypto_Cipher_Mode()
71 CCCryptorRelease(m_cipher);
75void CommonCrypto_Cipher_Mode::start_msg(
const uint8_t nonce[],
size_t nonce_len)
77 assert_key_material_set();
79 if(!valid_nonce_length(nonce_len))
80 {
throw Invalid_IV_Length(
name(), nonce_len); }
84 if(status != kCCSuccess)
86 throw CommonCrypto_Error(
"CCCryptorReset on start_msg", status);
92size_t CommonCrypto_Cipher_Mode::process_msg(uint8_t msg[],
size_t msg_len)
94 assert_key_material_set();
101 size_t outl = CCCryptorGetOutputLength(m_cipher, msg_len,
false);
103 secure_vector<uint8_t> out(outl);
105 if(
m_opts.padding == ccNoPadding && msg_len %
m_opts.block_size)
111 out.data(), outl, &outl);
112 if(status != kCCSuccess)
114 throw CommonCrypto_Error(
"CCCryptorUpdate", status);
121void CommonCrypto_Cipher_Mode::finish_msg(secure_vector<uint8_t>& buffer,
124 assert_key_material_set();
128 uint8_t* buf = buffer.data() + offset;
129 const size_t buf_size = buffer.size() - offset;
131 size_t written = process(buf, buf_size);
133 size_t outl = CCCryptorGetOutputLength(m_cipher, buf_size - written,
true);
134 secure_vector<uint8_t> out(outl);
137 m_cipher, out.data(), outl, &outl);
138 if(status != kCCSuccess)
140 throw CommonCrypto_Error(
"CCCryptorFinal", status);
143 size_t new_len = offset + written + outl;
144 if(
m_opts.padding != ccNoPadding || buffer.size() < new_len)
146 buffer.resize(new_len);
148 copy_mem(buffer.data() - offset + written, out.data(), outl);
152size_t CommonCrypto_Cipher_Mode::update_granularity()
const
157size_t CommonCrypto_Cipher_Mode::ideal_granularity()
const
162size_t CommonCrypto_Cipher_Mode::minimum_final_size()
const
164 if(m_direction == Cipher_Dir::Encryption)
170size_t CommonCrypto_Cipher_Mode::default_nonce_length()
const
175bool CommonCrypto_Cipher_Mode::valid_nonce_length(
size_t nonce_len)
const
177 return (nonce_len == 0 || nonce_len ==
m_opts.block_size);
180size_t CommonCrypto_Cipher_Mode::output_length(
size_t input_length)
const
182 if(input_length == 0)
183 {
return m_opts.block_size; }
188void CommonCrypto_Cipher_Mode::clear()
192 if(m_cipher ==
nullptr)
199 CCCryptorRelease(m_cipher);
204void CommonCrypto_Cipher_Mode::reset()
206 if(m_cipher ==
nullptr)
214 if(status != kCCSuccess)
216 throw CommonCrypto_Error(
"CCCryptorReset", status);
220Key_Length_Specification CommonCrypto_Cipher_Mode::key_spec()
const
225void CommonCrypto_Cipher_Mode::key_schedule(
const uint8_t key[],
size_t length)
228 CCOperation op = m_direction == Cipher_Dir::Encryption ? kCCEncrypt : kCCDecrypt;
230 nullptr, key, length,
nullptr, 0, 0, 0, &m_cipher);
231 if(status != kCCSuccess)
233 throw CommonCrypto_Error(
"CCCryptorCreate", status);
241std::unique_ptr<Cipher_Mode>
247 return std::make_unique<CommonCrypto_Cipher_Mode>(
name, direction, opts);
#define BOTAN_STATE_CHECK(expr)
#define BOTAN_ASSERT(expr, assertion_made)
CommonCryptor_Opts m_opts
int(* final)(unsigned char *, CTX *)
#define BOTAN_BLOCK_CIPHER_PAR_MULT
std::unique_ptr< Cipher_Mode > make_commoncrypto_cipher_mode(std::string_view name, Cipher_Dir direction)
constexpr void copy_mem(T *out, const T *in, size_t n)
CommonCryptor_Opts commoncrypto_opts_from_algo(std::string_view algo)
size_t round_up(size_t n, size_t align_to)