diff options
Diffstat (limited to 'librecrypt_hash_binary.c')
| -rw-r--r-- | librecrypt_hash_binary.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/librecrypt_hash_binary.c b/librecrypt_hash_binary.c index 7539604..b9ca93c 100644 --- a/librecrypt_hash_binary.c +++ b/librecrypt_hash_binary.c @@ -4,9 +4,10 @@ ssize_t -librecrypt_hash_binary(void *restrict out_buffer, size_t size, const char *phrase, size_t len, const char *settings, void *reserved) +librecrypt_hash_binary(void *restrict out_buffer, size_t size, const char *phrase, + size_t len, const char *settings, LIBRECRYPT_CONTEXT *ctx) { - return librecrypt_hash_(out_buffer, size, phrase, len, settings, reserved, BINARY_HASH); + return librecrypt_hash_(out_buffer, size, phrase, len, settings, ctx, BINARY_HASH); } |
