revert-mm-fix-blkdev-size-calculation-in-generic_write_checks
[linux-2.6/linux-trees-mm.git] / fs / reiser4 / plugin / crypto / cipher.c
blobe9181541ef6c5b33d3c89d2f4b09d1fe749ae519
1 /* Copyright 2001, 2002, 2003 by Hans Reiser,
2 licensing governed by reiser4/README */
3 /* Reiser4 cipher transform plugins */
5 #include "../../debug.h"
6 #include "../plugin.h"
8 cipher_plugin cipher_plugins[LAST_CIPHER_ID] = {
9 [NONE_CIPHER_ID] = {
10 .h = {
11 .type_id = REISER4_CIPHER_PLUGIN_TYPE,
12 .id = NONE_CIPHER_ID,
13 .pops = NULL,
14 .label = "none",
15 .desc = "no cipher transform",
16 .linkage = {NULL, NULL}
18 .alloc = NULL,
19 .free = NULL,
20 .scale = NULL,
21 .align_stream = NULL,
22 .setkey = NULL,
23 .encrypt = NULL,
24 .decrypt = NULL
28 /* Make Linus happy.
29 Local variables:
30 c-indentation-style: "K&R"
31 mode-name: "LC"
32 c-basic-offset: 8
33 tab-width: 8
34 fill-column: 120
35 scroll-step: 1
36 End: