diff options
Diffstat (limited to '')
| -rw-r--r-- | librecrypt_hash.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/librecrypt_hash.c b/librecrypt_hash.c new file mode 100644 index 0000000..267aa31 --- /dev/null +++ b/librecrypt_hash.c @@ -0,0 +1,26 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" +#ifndef TEST + + +ssize_t +librecrypt_hash(char *restrict out_buffer, size_t size, const char *phrase, size_t len, const char *settings, void *reserved) +{ + return librecrypt_hash_(out_buffer, size, phrase, len, settings, reserved, ASCII_HASH); +} + + +#else + + +int +main(void) +{ + SET_UP_ALARM(); + + return 0; +} + + +#endif +/* TODO test */ |
