From d66be84b420fbb0afb6a22610cfd5b46b76a5150 Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 23 Mar 2010 01:17:41 +0000 Subject: Remove SecureBuffer, which is the fixed-size variant of SecureVector. Add a second template param to SecureVector which specifies the initial length. Change all callers to be SecureVector instead of SecureBuffer. This can go away in C++0x, once compilers implement N2712 ("Non-static data member initializers"), and we can just write code as SecureVector P{18}; instead --- src/block/square/square.cpp | 2 +- src/block/square/square.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/block/square') diff --git a/src/block/square/square.cpp b/src/block/square/square.cpp index 892568655..adcf18611 100644 --- a/src/block/square/square.cpp +++ b/src/block/square/square.cpp @@ -140,7 +140,7 @@ void Square::decrypt_n(const byte in[], byte out[], u32bit blocks) const */ void Square::key_schedule(const byte key[], u32bit) { - SecureBuffer XEK, XDK; + SecureVector XEK, XDK; for(u32bit i = 0; i != 4; ++i) XEK[i] = load_be(key, i); diff --git a/src/block/square/square.h b/src/block/square/square.h index 088122181..8e1f7f815 100644 --- a/src/block/square/square.h +++ b/src/block/square/square.h @@ -45,8 +45,8 @@ class BOTAN_DLL Square : public BlockCipher static const u32bit TD2[256]; static const u32bit TD3[256]; - SecureBuffer EK, DK; - SecureBuffer ME, MD; + SecureVector EK, DK; + SecureVector ME, MD; }; } -- cgit v1.2.3