diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-09-17 03:58:17 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-09-17 04:36:24 +0200 |
commit | cda3dc51520680d52df56fd22f42db4e64c84600 (patch) | |
tree | 9747b58b87f90374a4d3d6fa5adc8aecd0bd7b7e /src/crypto/include/zinc | |
parent | bf7d9c0523269ed7f99f58e8e67d4fb37ba51209 (diff) |
poly1305: do not require simd context for arch
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/crypto/include/zinc')
-rw-r--r-- | src/crypto/include/zinc/poly1305.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crypto/include/zinc/poly1305.h b/src/crypto/include/zinc/poly1305.h index 7eafd46..a7f552c 100644 --- a/src/crypto/include/zinc/poly1305.h +++ b/src/crypto/include/zinc/poly1305.h @@ -24,8 +24,7 @@ struct poly1305_ctx { void poly1305_fpu_init(void); -void poly1305_init(struct poly1305_ctx *ctx, const u8 key[POLY1305_KEY_SIZE], - simd_context_t simd_context); +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], |