aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/include/zinc/poly1305.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/include/zinc/poly1305.h')
-rw-r--r--src/crypto/include/zinc/poly1305.h6
1 files changed, 0 insertions, 6 deletions
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 */