Botan 3.0.0
Crypto and TLS for C&
ffi_block.cpp
Go to the documentation of this file.
1/*
2* (C) 2015,2017 Jack Lloyd
3*
4* Botan is released under the Simplified BSD License (see license.txt)
5*/
6
7#include <botan/ffi.h>
8#include <botan/internal/ffi_util.h>
9#include <botan/block_cipher.h>
10
11extern "C" {
12
13using namespace Botan_FFI;
14
15BOTAN_FFI_DECLARE_STRUCT(botan_block_cipher_struct, Botan::BlockCipher, 0x64C29716);
16
17int botan_block_cipher_init(botan_block_cipher_t* bc, const char* bc_name)
18 {
19 return ffi_guard_thunk(__func__, [=]() -> int {
20 if(bc == nullptr || bc_name == nullptr || *bc_name == 0)
22
23 *bc = nullptr;
24
25 auto cipher = Botan::BlockCipher::create(bc_name);
26 if(cipher == nullptr)
28
29 *bc = new botan_block_cipher_struct(std::move(cipher));
30 return BOTAN_FFI_SUCCESS;
31 });
32 }
33
34/**
35* Destroy a block cipher object
36*/
38 {
39 return BOTAN_FFI_CHECKED_DELETE(bc);
40 }
41
43 {
44 return BOTAN_FFI_VISIT(bc, [](auto& b) { b.clear(); });
45 }
46
47/**
48* Set the key for a block cipher instance
49*/
51 const uint8_t key[], size_t len)
52 {
53 if(key == nullptr)
55 return BOTAN_FFI_VISIT(bc, [=](auto& b) { b.set_key(key, len); });
56 }
57
58/**
59* Return the positive block size of this block cipher, or negative to
60* indicate an error
61*/
63 {
64 return BOTAN_FFI_VISIT(bc, [](const auto& b) { return static_cast<int>(b.block_size()); });
65 }
66
68 const uint8_t in[],
69 uint8_t out[],
70 size_t blocks)
71 {
72 if(in == nullptr || out == nullptr)
74 return BOTAN_FFI_VISIT(bc, [=](const auto& b) { b.encrypt_n(in, out, blocks); });
75 }
76
78 const uint8_t in[],
79 uint8_t out[],
80 size_t blocks)
81 {
82 if(in == nullptr || out == nullptr)
84 return BOTAN_FFI_VISIT(bc, [=](const auto& b) { b.decrypt_n(in, out, blocks); });
85 }
86
87int botan_block_cipher_name(botan_block_cipher_t cipher, char* name, size_t* name_len)
88 {
89 if(name_len == nullptr)
91
92 return BOTAN_FFI_VISIT(cipher, [=](const auto& bc) { return write_str_output(name, name_len, bc.name()); });
93 }
94
96 size_t* out_minimum_keylength,
97 size_t* out_maximum_keylength,
98 size_t* out_keylength_modulo)
99 {
100 return BOTAN_FFI_VISIT(cipher, [=](const auto& bc){
101 if(out_minimum_keylength)
102 *out_minimum_keylength = bc.minimum_keylength();
103 if(out_maximum_keylength)
104 *out_maximum_keylength = bc.maximum_keylength();
105 if(out_keylength_modulo)
106 *out_keylength_modulo = bc.key_spec().keylength_multiple();
107 });
108 }
109
110}
static std::unique_ptr< BlockCipher > create(std::string_view algo_spec, std::string_view provider="")
std::string name
struct botan_block_cipher_struct * botan_block_cipher_t
Definition: ffi.h:754
@ BOTAN_FFI_ERROR_NOT_IMPLEMENTED
Definition: ffi.h:91
@ BOTAN_FFI_ERROR_NULL_POINTER
Definition: ffi.h:85
@ BOTAN_FFI_SUCCESS
Definition: ffi.h:70
int botan_block_cipher_get_keyspec(botan_block_cipher_t cipher, size_t *out_minimum_keylength, size_t *out_maximum_keylength, size_t *out_keylength_modulo)
Definition: ffi_block.cpp:95
int botan_block_cipher_clear(botan_block_cipher_t bc)
Definition: ffi_block.cpp:42
int botan_block_cipher_init(botan_block_cipher_t *bc, const char *bc_name)
Definition: ffi_block.cpp:17
int botan_block_cipher_block_size(botan_block_cipher_t bc)
Definition: ffi_block.cpp:62
int botan_block_cipher_decrypt_blocks(botan_block_cipher_t bc, const uint8_t in[], uint8_t out[], size_t blocks)
Definition: ffi_block.cpp:77
int botan_block_cipher_name(botan_block_cipher_t cipher, char *name, size_t *name_len)
Definition: ffi_block.cpp:87
int botan_block_cipher_destroy(botan_block_cipher_t bc)
Definition: ffi_block.cpp:37
int botan_block_cipher_encrypt_blocks(botan_block_cipher_t bc, const uint8_t in[], uint8_t out[], size_t blocks)
Definition: ffi_block.cpp:67
int botan_block_cipher_set_key(botan_block_cipher_t bc, const uint8_t key[], size_t len)
Definition: ffi_block.cpp:50
#define BOTAN_FFI_VISIT(obj, lambda)
Definition: ffi_util.h:126
#define BOTAN_FFI_CHECKED_DELETE(o)
Definition: ffi_util.h:145
#define BOTAN_FFI_DECLARE_STRUCT(NAME, TYPE, MAGIC)
Definition: ffi_util.h:55
int write_str_output(uint8_t out[], size_t *out_len, std::string_view str)
Definition: ffi_util.h:219
int ffi_guard_thunk(const char *func_name, const std::function< int()> &thunk)
Definition: ffi.cpp:120