aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/blowfish/blowfish.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/blowfish/blowfish.h')
-rw-r--r--src/block/blowfish/blowfish.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/blowfish/blowfish.h b/src/block/blowfish/blowfish.h
index 5419308ca..2306f0e37 100644
--- a/src/block/blowfish/blowfish.h
+++ b/src/block/blowfish/blowfish.h
@@ -33,8 +33,8 @@ class BOTAN_DLL Blowfish : public BlockCipher
static const u32bit P_INIT[18];
static const u32bit S_INIT[1024];
- SecureBuffer<u32bit, 1024> S;
- SecureBuffer<u32bit, 18> P;
+ SecureVector<u32bit, 1024> S;
+ SecureVector<u32bit, 18> P;
};
}