/* * Common values for blowfish algorithms */ #ifndef _CRYPTO_BLOWFISH_H #define _CRYPTO_BLOWFISH_H #include #include #define BF_BLOCK_SIZE 8 #define BF_MIN_KEY_SIZE 4 #define BF_MAX_KEY_SIZE 56 struct bf_ctx { u32 p[18]; u32 s[1024]; }; int blowfish_setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int key_len); #endif href='git://git.distanz.ch/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
space:
mode:
authorMel Gorman <mgorman@suse.de>2015-09-04 15:47:38 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2015-09-04 16:54:41 -0700
commitc7e1e3ccfbd153c890240a391f258efaedfa94d0 (patch)
tree4a17021d74b49f23aa2a7888bc9ecd5026dd8f9d /kernel/trace/ring_buffer_benchmark.c
parentd950c9477d51f0cefc2ed3cf76e695d46af0d9c1 (diff)
Documentation/features/vm: add feature description and arch support status for batched TLB flush after unmap
Signed-off-by: Mel Gorman <mgorman@suse.de> Acked-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/trace/ring_buffer_benchmark.c')