diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-03-01 22:27:56 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-03-01 23:14:55 +0100 |
commit | 3157d1f06e37906fd8821d2d869c40eac0d2b38c (patch) | |
tree | 5aeb6fab42c5f2cf8ed4c06c458c024315f2eb2a /src/plugins/plugin.c | |
parent | 9a6a27ef58982319549529d43906da60ce199aaf (diff) | |
download | weechat-3157d1f06e37906fd8821d2d869c40eac0d2b38c.zip |
api: add function crypto_hash_pbkdf2
Diffstat (limited to 'src/plugins/plugin.c')
-rw-r--r-- | src/plugins/plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/plugin.c b/src/plugins/plugin.c index 597c69417..6497c2739 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -650,6 +650,7 @@ plugin_load (const char *filename, int init_plugin, int argc, char **argv) new_plugin->utf8_strndup = &utf8_strndup; new_plugin->crypto_hash = &plugin_api_crypto_hash; + new_plugin->crypto_hash_pbkdf2 = &plugin_api_crypto_hash_pbkdf2; new_plugin->mkdir_home = &util_mkdir_home; new_plugin->mkdir = &util_mkdir; |