|
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>Go to the source code of this file.
Data Structures | |
| struct | anubis_ctx |
Macros | |
| #define | ANUBIS_MIN_KEY_SIZE 16 |
| #define | ANUBIS_MAX_KEY_SIZE 40 |
| #define | ANUBIS_BLOCK_SIZE 16 |
| #define | ANUBIS_MAX_N 10 |
| #define | ANUBIS_MAX_ROUNDS (8 + ANUBIS_MAX_N) |
Functions | |
| module_init (anubis_mod_init) | |
| module_exit (anubis_mod_fini) | |
| MODULE_LICENSE ("GPL") | |
| MODULE_DESCRIPTION ("Anubis Cryptographic Algorithm") | |
| #define ANUBIS_MAX_ROUNDS (8 + ANUBIS_MAX_N) |
| MODULE_DESCRIPTION | ( | "Anubis Cryptographic Algorithm" | ) |
| module_exit | ( | anubis_mod_fini | ) |
| module_init | ( | anubis_mod_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
1.8.2