aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/twofish/twofish.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/twofish/twofish.h')
-rw-r--r--src/block/twofish/twofish.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/twofish/twofish.h b/src/block/twofish/twofish.h
index 71a1e8781..7600abca8 100644
--- a/src/block/twofish/twofish.h
+++ b/src/block/twofish/twofish.h
@@ -41,8 +41,8 @@ class BOTAN_DLL Twofish : public BlockCipher
static const byte EXP_TO_POLY[255];
static const byte POLY_TO_EXP[255];
- SecureBuffer<u32bit, 256> SBox0, SBox1, SBox2, SBox3;
- SecureBuffer<u32bit, 40> round_key;
+ SecureVector<u32bit, 256> SBox0, SBox1, SBox2, SBox3;
+ SecureVector<u32bit, 40> round_key;
};
}