diff options
author | George Hazan <george.hazan@gmail.com> | 2016-01-26 08:28:32 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-01-26 08:28:32 +0000 |
commit | 2a82a9154f9d6e0b5658c82cd346051017339a1e (patch) | |
tree | 8321c2d1897d4026e68064241014eef4a57ddc9d /libs/libaxolotl/src/hkdf.h | |
parent | 80148955f82c205cc94f0112e0fbfe8f91bc4330 (diff) |
libaxolotl - initial commit
git-svn-id: http://svn.miranda-ng.org/main/trunk@16169 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'libs/libaxolotl/src/hkdf.h')
-rw-r--r-- | libs/libaxolotl/src/hkdf.h | 29 |
1 files changed, 29 insertions, 0 deletions
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 <stdint.h> +#include <stddef.h> +#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 */ |