1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/*
* (C) 2015,2017 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/ffi.h>
#include <botan/internal/ffi_util.h>
#include <botan/mac.h>
extern "C" {
using namespace Botan_FFI;
BOTAN_FFI_DECLARE_STRUCT(botan_mac_struct, Botan::MessageAuthenticationCode, 0xA06E8FC1);
int botan_mac_init(botan_mac_t* mac, const char* mac_name, uint32_t flags)
{
return ffi_guard_thunk(__func__, [=]() -> int {
if(!mac || !mac_name || flags != 0)
return BOTAN_FFI_ERROR_NULL_POINTER;
std::unique_ptr<Botan::MessageAuthenticationCode> m =
Botan::MessageAuthenticationCode::create(mac_name);
if(m == nullptr)
return BOTAN_FFI_ERROR_NOT_IMPLEMENTED;
*mac = new botan_mac_struct(m.release());
return BOTAN_FFI_SUCCESS;
});
}
int botan_mac_destroy(botan_mac_t mac)
{
return BOTAN_FFI_CHECKED_DELETE(mac);
}
int botan_mac_set_key(botan_mac_t mac, const uint8_t* key, size_t key_len)
{
return BOTAN_FFI_DO(Botan::MessageAuthenticationCode, mac, m, { m.set_key(key, key_len); });
}
int botan_mac_output_length(botan_mac_t mac, size_t* out)
{
return BOTAN_FFI_DO(Botan::MessageAuthenticationCode, mac, m, { *out = m.output_length(); });
}
int botan_mac_clear(botan_mac_t mac)
{
return BOTAN_FFI_DO(Botan::MessageAuthenticationCode, mac, m, { m.clear(); });
}
int botan_mac_update(botan_mac_t mac, const uint8_t* buf, size_t len)
{
return BOTAN_FFI_DO(Botan::MessageAuthenticationCode, mac, m, { m.update(buf, len); });
}
int botan_mac_final(botan_mac_t mac, uint8_t out[])
{
return BOTAN_FFI_DO(Botan::MessageAuthenticationCode, mac, m, { m.final(out); });
}
int botan_mac_name(botan_mac_t mac, char* name, size_t* name_len)
{
return BOTAN_FFI_DO(Botan::MessageAuthenticationCode, mac, m, {
return write_str_output(name, name_len, m.name()); });
}
int botan_mac_get_keyspec(botan_mac_t mac,
size_t* out_minimum_keylength,
size_t* out_maximum_keylength,
size_t* out_keylength_modulo)
{
return BOTAN_FFI_DO(Botan::MessageAuthenticationCode, mac, m, {
if(out_minimum_keylength)
*out_minimum_keylength = m.minimum_keylength();
if(out_maximum_keylength)
*out_maximum_keylength = m.maximum_keylength();
if(out_keylength_modulo)
*out_keylength_modulo = m.key_spec().keylength_multiple();
});
}
}
|