From 74957884685c3c3df9ef9540d2ff517017497a89 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 16 Mar 2017 19:38:59 +0100 Subject: blake2s: add AVX implementation --- src/crypto/blake2s.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/crypto/blake2s.h') diff --git a/src/crypto/blake2s.h b/src/crypto/blake2s.h index c2d717a..6b2242f 100644 --- a/src/crypto/blake2s.h +++ b/src/crypto/blake2s.h @@ -29,6 +29,8 @@ void blake2s_final(struct blake2s_state *state, u8 *out, u8 outlen); void blake2s_hmac(u8 *out, const u8 *in, const u8 *key, const u8 outlen, const u64 inlen, const u64 keylen); +void blake2s_fpu_init(void); + #ifdef DEBUG bool blake2s_selftest(void); #endif -- cgit v1.2.3-59-g8ed1b