12345678910111213141516171819 |
- #ifndef ASM_X86_SERPENT_AVX_H
- #define ASM_X86_SERPENT_AVX_H
- #include <linux/crypto.h>
- #include <crypto/serpent.h>
- #define SERPENT_PARALLEL_BLOCKS 8
- asmlinkage void serpent_ecb_enc_8way_avx(struct serpent_ctx *ctx, u8 *dst,
- const u8 *src);
- asmlinkage void serpent_ecb_dec_8way_avx(struct serpent_ctx *ctx, u8 *dst,
- const u8 *src);
- asmlinkage void serpent_cbc_dec_8way_avx(struct serpent_ctx *ctx, u8 *dst,
- const u8 *src);
- asmlinkage void serpent_ctr_8way_avx(struct serpent_ctx *ctx, u8 *dst,
- const u8 *src, le128 *iv);
- #endif
|