diff --git a/src/libstrongswan/plugins/twofish/twofish.h b/src/libstrongswan/plugins/twofish/twofish.h index f9013f90f..4a1f7625c 100644 --- a/src/libstrongswan/plugins/twofish/twofish.h +++ b/src/libstrongswan/plugins/twofish/twofish.h @@ -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;