diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-01-26 22:40:30 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-01-26 22:40:30 +0000 |
commit | 1eae6d3402ad2c0dcc3c8b4e4a757714211ac72f (patch) | |
tree | 66383e147bb16bbe034782e0dae008284bf87d2a /src/libcryptobox/curve25519 | |
parent | a8f5d99585a2d8eb23838787b3ab21c331c077d3 (diff) | |
download | rspamd-1eae6d3402ad2c0dcc3c8b4e4a757714211ac72f.tar.gz rspamd-1eae6d3402ad2c0dcc3c8b4e4a757714211ac72f.zip |
Improve planning of asynchronous tasks
Diffstat (limited to 'src/libcryptobox/curve25519')
-rw-r--r-- | src/libcryptobox/curve25519/avx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcryptobox/curve25519/avx.c b/src/libcryptobox/curve25519/avx.c index 6e0a6661a..3981f8cf7 100644 --- a/src/libcryptobox/curve25519/avx.c +++ b/src/libcryptobox/curve25519/avx.c @@ -34,6 +34,7 @@ typedef struct { typedef guint64 fe[10]; extern void ladder_avx (fe *var, const guchar *p); +extern void ladder_base_avx (fe *var, const guchar *p); extern void fe51_mul_avx (fe51 *a, const fe51 *b, const fe51 *c); extern void fe51_pack_avx (guchar *out, const fe51 *var); extern void fe51_nsquare_avx (fe51 *a, const fe51 *b, gint n); |