commit 6acd32e: [Minor] Use embedded hcacha for sodium compat

Vsevolod Stakhov vsevolod at highsecure.ru
Fri Jul 12 16:42:12 UTC 2019


Author: Vsevolod Stakhov
Date: 2019-07-12 09:48:28 +0100
URL: https://github.com/rspamd/rspamd/commit/6acd32efb16da419e7b1c3a618e3cd3473d23e2e

[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 0a3939e54..0b4ebe614 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);


More information about the Commits mailing list