From 2a82a9154f9d6e0b5658c82cd346051017339a1e Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 26 Jan 2016 08:28:32 +0000 Subject: libaxolotl - initial commit git-svn-id: http://svn.miranda-ng.org/main/trunk@16169 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- libs/libaxolotl/src/hkdf.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 libs/libaxolotl/src/hkdf.h (limited to 'libs/libaxolotl/src/hkdf.h') diff --git a/libs/libaxolotl/src/hkdf.h b/libs/libaxolotl/src/hkdf.h new file mode 100644 index 0000000000..8e939485c3 --- /dev/null +++ b/libs/libaxolotl/src/hkdf.h @@ -0,0 +1,29 @@ +#ifndef HKDF_H +#define HKDF_H + +#include +#include +#include "axolotl_types.h" + +#ifdef __cplusplus +extern "C" { +#endif + +int hkdf_create(hkdf_context **context, int message_version, axolotl_context *global_context); + +ssize_t hkdf_derive_secrets(hkdf_context *context, + uint8_t **output, + const uint8_t *input_key_material, size_t input_key_material_len, + const uint8_t *salt, size_t salt_len, + const uint8_t *info, size_t info_len, + size_t output_len); + +int hkdf_compare(const hkdf_context *context1, const hkdf_context *context2); + +void hkdf_destroy(axolotl_type_base *type); + +#ifdef __cplusplus +} +#endif + +#endif /* HKDF_H */ -- cgit v1.2.3