Botan 3.0.0
Crypto and TLS for C&
ffi_fpe.cpp
Go to the documentation of this file.
1/*
2* (C) 2018 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/internal/ffi_mp.h>
10#include <memory>
11
12#if defined(BOTAN_HAS_FPE_FE1)
13 #include <botan/fpe_fe1.h>
14#endif
15
16extern "C" {
17
18using namespace Botan_FFI;
19
20#if defined(BOTAN_HAS_FPE_FE1)
21
22BOTAN_FFI_DECLARE_STRUCT(botan_fpe_struct, Botan::FPE_FE1, 0xD49FB820);
23
24#endif
25
27 const uint8_t key[], size_t key_len,
28 size_t rounds, uint32_t flags)
29 {
30#if defined(BOTAN_HAS_FPE_FE1)
31 return ffi_guard_thunk(__func__, [=]() {
32 if(fpe == nullptr || key == nullptr)
34
35 *fpe = nullptr;
36
37 if(flags != 0 && flags != BOTAN_FPE_FLAG_FE1_COMPAT_MODE)
39
40 const bool compat_mode = (flags & BOTAN_FPE_FLAG_FE1_COMPAT_MODE);
41
42 std::unique_ptr<Botan::FPE_FE1> fpe_obj(
43 new Botan::FPE_FE1(safe_get(n), rounds, compat_mode));
44
45 fpe_obj->set_key(key, key_len);
46
47 *fpe = new botan_fpe_struct(std::move(fpe_obj));
48 return BOTAN_FFI_SUCCESS;
49 });
50#else
51 BOTAN_UNUSED(fpe, n, key, key_len, rounds, flags);
53#endif
54 }
55
57 {
58#if defined(BOTAN_HAS_FPE_FE1)
59 return BOTAN_FFI_CHECKED_DELETE(fpe);
60#else
61 BOTAN_UNUSED(fpe);
63#endif
64 }
65
66int botan_fpe_encrypt(botan_fpe_t fpe, botan_mp_t x, const uint8_t tweak[], size_t tweak_len)
67 {
68#if defined(BOTAN_HAS_FPE_FE1)
69 return ffi_guard_thunk(__func__, [=]() {
70 Botan::BigInt r = safe_get(fpe).encrypt(safe_get(x), tweak, tweak_len);
71 safe_get(x) = r;
72 return BOTAN_FFI_SUCCESS;
73 });
74#else
75 BOTAN_UNUSED(fpe, x, tweak, tweak_len);
77#endif
78 }
79
80int botan_fpe_decrypt(botan_fpe_t fpe, botan_mp_t x, const uint8_t tweak[], size_t tweak_len)
81 {
82#if defined(BOTAN_HAS_FPE_FE1)
83 return ffi_guard_thunk(__func__, [=]() {
84 Botan::BigInt r = safe_get(fpe).decrypt(safe_get(x), tweak, tweak_len);
85 safe_get(x) = r;
86 return BOTAN_FFI_SUCCESS;
87 });
88
89#else
90 BOTAN_UNUSED(fpe, x, tweak, tweak_len);
92#endif
93 }
94
95}
#define BOTAN_UNUSED(...)
Definition: assert.h:141
struct botan_mp_struct * botan_mp_t
Definition: ffi.h:827
#define BOTAN_FPE_FLAG_FE1_COMPAT_MODE
Definition: ffi.h:2021
@ BOTAN_FFI_ERROR_NOT_IMPLEMENTED
Definition: ffi.h:91
@ BOTAN_FFI_ERROR_BAD_FLAG
Definition: ffi.h:84
@ BOTAN_FFI_ERROR_NULL_POINTER
Definition: ffi.h:85
@ BOTAN_FFI_SUCCESS
Definition: ffi.h:70
struct botan_fpe_struct * botan_fpe_t
Definition: ffi.h:2019
int botan_fpe_decrypt(botan_fpe_t fpe, botan_mp_t x, const uint8_t tweak[], size_t tweak_len)
Definition: ffi_fpe.cpp:80
int botan_fpe_destroy(botan_fpe_t fpe)
Definition: ffi_fpe.cpp:56
int botan_fpe_encrypt(botan_fpe_t fpe, botan_mp_t x, const uint8_t tweak[], size_t tweak_len)
Definition: ffi_fpe.cpp:66
int botan_fpe_fe1_init(botan_fpe_t *fpe, botan_mp_t n, const uint8_t key[], size_t key_len, size_t rounds, uint32_t flags)
Definition: ffi_fpe.cpp:26
#define BOTAN_FFI_CHECKED_DELETE(o)
Definition: ffi_util.h:145
#define BOTAN_FFI_DECLARE_STRUCT(NAME, TYPE, MAGIC)
Definition: ffi_util.h:55
T & safe_get(botan_struct< T, M > *p)
Definition: ffi_util.h:69
int ffi_guard_thunk(const char *func_name, const std::function< int()> &thunk)
Definition: ffi.cpp:120