From fd24e1905b479dcdea58b9445fc4c837df908df7 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Mon, 17 Sep 2018 20:41:20 +0200 Subject: crypto: turn Zinc into individual modules --- src/crypto/include/zinc/poly1305.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/crypto/include/zinc/poly1305.h') diff --git a/src/crypto/include/zinc/poly1305.h b/src/crypto/include/zinc/poly1305.h index 1cdbadd..f6ea9dc 100644 --- a/src/crypto/include/zinc/poly1305.h +++ b/src/crypto/include/zinc/poly1305.h @@ -22,16 +22,10 @@ struct poly1305_ctx { size_t num; } __aligned(8); -void poly1305_fpu_init(void); - void poly1305_init(struct poly1305_ctx *ctx, const u8 key[POLY1305_KEY_SIZE]); void poly1305_update(struct poly1305_ctx *ctx, const u8 *input, size_t len, simd_context_t *simd_context); void poly1305_final(struct poly1305_ctx *ctx, u8 mac[POLY1305_MAC_SIZE], simd_context_t *simd_context); -#ifdef DEBUG -bool poly1305_selftest(void); -#endif - #endif /* _ZINC_POLY1305_H */ -- cgit v1.2.3-59-g8ed1b