#ifndef _CRYPTO_TWOFISH_H1#define _CRYPTO_TWOFISH_H23#include <linux/types.h>45#define TF_MIN_KEY_SIZE 166#define TF_MAX_KEY_SIZE 327#define TF_BLOCK_SIZE 1689struct crypto_tfm;1011/* Structure for an expanded Twofish key. s contains the key-dependent12* S-boxes composed with the MDS matrix; w contains the eight "whitening"13* subkeys, K[0] through K[7]. k holds the remaining, "round" subkeys. Note14* that k[i] corresponds to what the Twofish paper calls K[i+8]. */15struct twofish_ctx {16u32 s[4][256], w[8], k[32];17};1819int twofish_setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int key_len);2021#endif222324