Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.9 19 lines 558 B view raw
1#ifndef ASM_X86_SERPENT_AVX_H 2#define ASM_X86_SERPENT_AVX_H 3 4#include <linux/crypto.h> 5#include <crypto/serpent.h> 6 7#define SERPENT_PARALLEL_BLOCKS 8 8 9asmlinkage void serpent_ecb_enc_8way_avx(struct serpent_ctx *ctx, u8 *dst, 10 const u8 *src); 11asmlinkage void serpent_ecb_dec_8way_avx(struct serpent_ctx *ctx, u8 *dst, 12 const u8 *src); 13 14asmlinkage void serpent_cbc_dec_8way_avx(struct serpent_ctx *ctx, u8 *dst, 15 const u8 *src); 16asmlinkage void serpent_ctr_8way_avx(struct serpent_ctx *ctx, u8 *dst, 17 const u8 *src, le128 *iv); 18 19#endif