From 6acd32efb16da419e7b1c3a618e3cd3473d23e2e Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 12 Jul 2019 09:48:28 +0100 Subject: [PATCH] [Minor] Use embedded hcacha for sodium compat --- src/libcryptobox/cryptobox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcryptobox/cryptobox.c b/src/libcryptobox/cryptobox.c index 0a3939e544..0b4ebe614d 100644 --- a/src/libcryptobox/cryptobox.c +++ b/src/libcryptobox/cryptobox.c @@ -440,7 +440,7 @@ rspamd_cryptobox_nm (rspamd_nm_t nm, g_assert (len == sizeof (s)); /* Still do hchacha iteration since we are not using SHA1 KDF */ - crypto_core_hchacha20 (nm, n0, s, NULL); + hchacha (s, n0, nm, 20); EC_KEY_free (lk); EC_POINT_free (ec_pub); -- 2.47.3