aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/tea/tea.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/tea/tea.h')
-rw-r--r--src/block/tea/tea.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/tea/tea.h b/src/block/tea/tea.h
index 0290b112f..5d418e084 100644
--- a/src/block/tea/tea.h
+++ b/src/block/tea/tea.h
@@ -28,7 +28,7 @@ class BOTAN_DLL TEA : public Block_Cipher_Fixed_Params<8, 16>
TEA() : K(4) {}
private:
void key_schedule(const byte[], size_t);
- SecureVector<u32bit> K;
+ secure_vector<u32bit> K;
};
}