Linux Kernel
3.7.1
|
#include <linux/module.h>
#include <linux/hardirq.h>
#include <linux/types.h>
#include <linux/crypto.h>
#include <linux/err.h>
#include <crypto/algapi.h>
#include <crypto/cast5.h>
#include <crypto/cryptd.h>
#include <crypto/ctr.h>
#include <asm/xcr.h>
#include <asm/xsave.h>
#include <asm/crypto/ablk_helper.h>
#include <asm/crypto/glue_helper.h>
Go to the source code of this file.
Macros | |
#define | CAST5_PARALLEL_BLOCKS 16 |
Functions | |
asmlinkage void | __cast5_enc_blk_16way (struct cast5_ctx *ctx, u8 *dst, const u8 *src, bool xor) |
asmlinkage void | cast5_dec_blk_16way (struct cast5_ctx *ctx, u8 *dst, const u8 *src) |
module_init (cast5_init) | |
module_exit (cast5_exit) | |
MODULE_DESCRIPTION ("Cast5 Cipher Algorithm, AVX optimized") | |
MODULE_LICENSE ("GPL") | |
MODULE_ALIAS ("cast5") | |
#define CAST5_PARALLEL_BLOCKS 16 |
Definition at line 38 of file cast5_avx_glue.c.
asmlinkage void __cast5_enc_blk_16way | ( | struct cast5_ctx * | ctx, |
u8 * | dst, | ||
const u8 * | src, | ||
bool | xor | ||
) |
MODULE_ALIAS | ( | "cast5" | ) |
MODULE_DESCRIPTION | ( | "Cast5 Cipher | Algorithm, |
AVX optimized" | |||
) |
module_exit | ( | cast5_exit | ) |
module_init | ( | cast5_init | ) |
MODULE_LICENSE | ( | "GPL" | ) |