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/zinc/poly1305/poly1305-x86_64-glue.h | |
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/zinc/poly1305/poly1305-x86_64-glue.h')
-rw-r--r-- | src/crypto/zinc/poly1305/poly1305-x86_64-glue.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crypto/zinc/poly1305/poly1305-x86_64-glue.h b/src/crypto/zinc/poly1305/poly1305-x86_64-glue.h index 8cf3ac9..7f1af44 100644 --- a/src/crypto/zinc/poly1305/poly1305-x86_64-glue.h +++ b/src/crypto/zinc/poly1305/poly1305-x86_64-glue.h @@ -55,8 +55,7 @@ void __init poly1305_fpu_init(void) } static inline bool poly1305_init_arch(void *ctx, - const u8 key[POLY1305_KEY_SIZE], - simd_context_t simd_context) + const u8 key[POLY1305_KEY_SIZE]) { poly1305_init_x86_64(ctx, key); return true; |