#include <asm/processor.h>
#include <crypto/blowfish.h>
#include <linux/crypto.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/types.h>
#include <crypto/algapi.h>
Go to the source code of this file.
|
asmlinkage void | __blowfish_enc_blk (struct bf_ctx *ctx, u8 *dst, const u8 *src, bool xor) |
|
asmlinkage void | blowfish_dec_blk (struct bf_ctx *ctx, u8 *dst, const u8 *src) |
|
asmlinkage void | __blowfish_enc_blk_4way (struct bf_ctx *ctx, u8 *dst, const u8 *src, bool xor) |
|
asmlinkage void | blowfish_dec_blk_4way (struct bf_ctx *ctx, u8 *dst, const u8 *src) |
|
| module_param (force, int, 0) |
|
| MODULE_PARM_DESC (force,"Force module load, ignore CPU blacklist") |
|
| module_init (init) |
|
| module_exit (fini) |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_DESCRIPTION ("Blowfish Cipher Algorithm, asm optimized") |
|
| MODULE_ALIAS ("blowfish") |
|
| MODULE_ALIAS ("blowfish-asm") |
|
MODULE_ALIAS |
( |
"blowfish" |
| ) |
|
MODULE_ALIAS |
( |
"blowfish-asm" |
| ) |
|
MODULE_DESCRIPTION |
( |
"Blowfish Cipher |
Algorithm, |
|
|
asm optimized" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
force |
, |
|
|
"Force module |
load, |
|
|
ignore CPU blacklist" |
|
|
) |
| |