cosmetics

This commit is contained in:
Andreas Steffen 2009-05-14 22:25:38 +02:00
parent 8bdc0327fb
commit 12eece1b27
1 changed files with 3 additions and 2 deletions

View File

@ -9,10 +9,11 @@
/* Structure for an expanded Twofish key. s contains the key-dependent
* S-boxes composed with the MDS matrix; w contains the eight "whitening"
* subkeys, K[0] through K[7]. k holds the remaining, "round" subkeys. Note
* that k[i] corresponds to what the Twofish paper calls K[i+8]. */
* that k[i] corresponds to what the Twofish paper calls K[i+8].
*/
typedef struct twofish_context {
u_int32_t s[4][256], w[8], k[32];
} TWOFISH_context;
};
typedef struct twofish_context twofish_context;