diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-02-13 07:56:33 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-02-13 09:09:08 +0300 |
commit | 193f645f65ad4ffdec3186e4176b23af10861199 (patch) | |
tree | e1b16b48ac74c5f03f99a98798e849f6dd9752cc /libs/libaxolotl/src/hkdf.h | |
parent | 36c32a13878d3bd94e88bd9c764f1eadb05ea1ed (diff) |
libs:
libaxolotl:
updated libaxolotl (libsignal-c) from (https://github.com/WhisperSystems/libsignal-protocol-c)
Diffstat (limited to 'libs/libaxolotl/src/hkdf.h')
-rw-r--r-- | libs/libaxolotl/src/hkdf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/libaxolotl/src/hkdf.h b/libs/libaxolotl/src/hkdf.h index 8e939485c3..43ee870401 100644 --- a/libs/libaxolotl/src/hkdf.h +++ b/libs/libaxolotl/src/hkdf.h @@ -3,13 +3,13 @@ #include <stdint.h> #include <stddef.h> -#include "axolotl_types.h" +#include "signal_protocol_types.h" #ifdef __cplusplus extern "C" { #endif -int hkdf_create(hkdf_context **context, int message_version, axolotl_context *global_context); +int hkdf_create(hkdf_context **context, int message_version, signal_context *global_context); ssize_t hkdf_derive_secrets(hkdf_context *context, uint8_t **output, @@ -20,7 +20,7 @@ ssize_t hkdf_derive_secrets(hkdf_context *context, int hkdf_compare(const hkdf_context *context1, const hkdf_context *context2); -void hkdf_destroy(axolotl_type_base *type); +void hkdf_destroy(signal_type_base *type); #ifdef __cplusplus } |