|
Linux Kernel
3.7.1
|
#include <linux/module.h>#include <linux/init.h>#include <linux/string.h>#include <linux/crypto.h>#include <linux/blkdev.h>#include <linux/loop.h>#include <linux/scatterlist.h>#include <asm/uaccess.h>Go to the source code of this file.
Macros | |
| #define | LOOP_IV_SECTOR_BITS 9 |
| #define | LOOP_IV_SECTOR_SIZE (1 << LOOP_IV_SECTOR_BITS) |
Typedefs | |
| typedef int(* | encdec_cbc_t )(struct blkcipher_desc *desc, struct scatterlist *sg_out, struct scatterlist *sg_in, unsigned int nsg) |
Functions | |
| MODULE_LICENSE ("GPL") | |
| MODULE_DESCRIPTION ("loop blockdevice transferfunction adaptor / CryptoAPI") | |
| MODULE_AUTHOR ("Herbert Valerio Riedel <[email protected]>") | |
| module_init (init_cryptoloop) | |
| module_exit (cleanup_cryptoloop) | |
| #define LOOP_IV_SECTOR_BITS 9 |
Definition at line 36 of file cryptoloop.c.
| #define LOOP_IV_SECTOR_SIZE (1 << LOOP_IV_SECTOR_BITS) |
Definition at line 37 of file cryptoloop.c.
| typedef int(* encdec_cbc_t)(struct blkcipher_desc *desc, struct scatterlist *sg_out, struct scatterlist *sg_in, unsigned int nsg) |
Definition at line 106 of file cryptoloop.c.
| MODULE_AUTHOR | ( | "Herbert Valerio Riedel <[email protected]>" | ) |
| MODULE_DESCRIPTION | ( | "loop blockdevice transferfunction adaptor / CryptoAPI" | ) |
| module_exit | ( | cleanup_cryptoloop | ) |
| module_init | ( | init_cryptoloop | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
1.8.2