]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix some issues found
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 5 May 2020 08:50:35 +0000 (09:50 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 5 May 2020 08:50:35 +0000 (09:50 +0100)
src/lua/lua_cryptobox.c

index 12f3e063f7b26119bdbcf687eb2a14bf99c215d9..b0f5f0bac3dca1a7f25deab793517017adf898b5 100644 (file)
@@ -2661,7 +2661,7 @@ lua_cryptobox_secretbox_decrypt (lua_State *L)
                        TRUE);
        gint text_pos = lua_gettop (L);
 
-       if (crypto_secretbox_easy ((guchar *)out->start, in, inlen,
+       if (crypto_secretbox_open_easy ((guchar *)out->start, in, inlen,
                        nonce, sbox->sk) == 0) {
                lua_pushboolean (L, true);
                lua_pushvalue (L, text_pos); /* Prevent gc by copying in stack */
@@ -2717,7 +2717,7 @@ static gint
 lua_load_cryptobox_secretbox (lua_State * L)
 {
        lua_newtable (L);
-       luaL_register (L, NULL, cryptoboxhashlib_f);
+       luaL_register (L, NULL, cryptoboxsecretboxlib_f);
 
        return 1;
 }