Linux Kernel
3.7.1
|
#include <linux/init.h>
#include <linux/module.h>
#include <linux/mm.h>
#include <asm/byteorder.h>
#include <linux/crypto.h>
#include <linux/types.h>
#include <crypto/blowfish.h>
Go to the source code of this file.
Macros | |
#define | GET32_3(x) (((x) & 0xff)) |
#define | GET32_2(x) (((x) >> (8)) & (0xff)) |
#define | GET32_1(x) (((x) >> (16)) & (0xff)) |
#define | GET32_0(x) (((x) >> (24)) & (0xff)) |
#define | bf_F(x) |
#define | ROUND(a, b, n) ({ b ^= P[n]; a ^= bf_F(b); }) |
Functions | |
int | blowfish_setkey (struct crypto_tfm *tfm, const u8 *key, unsigned int keylen) |
EXPORT_SYMBOL_GPL (blowfish_setkey) | |
MODULE_LICENSE ("GPL") | |
MODULE_DESCRIPTION ("Blowfish Cipher common functions") | |
#define bf_F | ( | x | ) |
Definition at line 304 of file blowfish_common.c.
Definition at line 303 of file blowfish_common.c.
Definition at line 302 of file blowfish_common.c.
Definition at line 301 of file blowfish_common.c.
Definition at line 309 of file blowfish_common.c.
Definition at line 349 of file blowfish_common.c.
EXPORT_SYMBOL_GPL | ( | blowfish_setkey | ) |
MODULE_DESCRIPTION | ( | "Blowfish Cipher common functions" | ) |
MODULE_LICENSE | ( | "GPL" | ) |